/* auth.css - Styles for authentication pages */

.hover-text-white:hover { color: #fff; }
.hover-text-green:hover { color: var(--rgb-green); }
.hover-text-purple:hover { color: var(--rgb-purple); }

.hover-underline-green {
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--rgb-green);
    transition: width 0.3s ease;
}

.hover-text-green:hover .hover-underline-green {
    width: 100%;
}

.hover-underline-purple {
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--rgb-purple);
    transition: width 0.3s ease;
}

.hover-text-purple:hover .hover-underline-purple {
    width: 100%;
}

.links-container {
    display: flex;
    justify-content: center;
}

/* Checkbox */
.custom-checkbox {
    height: 1rem;
    width: 1rem;
    color: var(--rgb-blue);
    background-color: var(--dark-bg);
    border: 1px solid #374151;
    border-radius: 0.25rem;
    cursor: pointer;
}
.custom-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.5);
}

.ml-2 { margin-left: 0.5rem; }

.auth-alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #f87171;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.auth-password-toggle {
    position: absolute;
    right: 0;
    padding-right: 0.75rem;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
}

.auth-divider {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.auth-divider-line {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    display: flex;
    align-items: center;
}

.auth-divider-text-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 0.875rem;
}

.auth-divider-text {
    padding: 0 1rem;
    background-color: var(--dark-card);
    color: #6b7280;
}
