﻿.auth-wrapper {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.auth-title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
}

.auth-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
}

    .auth-tabs a {
        padding: 10px 0;
        font-size: 14px;
        color: #6b7280;
        text-decoration: none;
        position: relative;
    }

        .auth-tabs a.active {
            color: #2563eb;
            font-weight: 500;
        }

            .auth-tabs a.active::after {
                content: "";
                position: absolute;
                bottom: -1px;
                left: 0;
                width: 100%;
                height: 2px;
                background: #2563eb;
            }

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.form-control {
    height: 44px;
    border-radius: 8px;
    font-size: 14px;
}

.password-container {
    position: relative;
}

    .password-container input {
        padding-right: 45px;
    }

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
    font-size: 18px;
}

    .password-toggle:hover {
        color: #2563eb;
    }

.forgot-link {
    font-size: 13px;
    text-align: right;
    margin-top: 6px;
}

    .forgot-link a {
        color: #2563eb;
        text-decoration: none;
    }

        .forgot-link a:hover {
            text-decoration: underline;
        }

.btn-login {
    background: #4f46e5;
    border: none;
    height: 44px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
}

    .btn-login:hover {
        background: #4338ca;
    }

.error-box {
    background: #fee2e2;
    color: #991b1b;
    font-size: 13px;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-align: center;
}

