﻿
.auth-container {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: 90px; /* Account for fixed header height + extra spacing */
}

.auth-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 100%;
    max-width: 450px;
}

.auth-header {
    background: #fa8c16;
    color: white;
    padding: 30px;
    text-align: center;
}

    .auth-header h1 {
        margin: 0;
        font-size: 28px;
        font-weight: 600;
    }

    .auth-header p {
        margin: 10px 0 0 0;
        opacity: 0.9;
        font-size: 16px;
    }

.auth-body {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #333;
    }

.auth-btn {
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 20px;
}

.social-login {
    margin-top: 30px;
    text-align: center;
}

    .social-login p {
        color: #666;
        margin-bottom: 20px;
        position: relative;
    }

        .social-login p::before,
        .social-login p::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 30%;
            height: 1px;
            background: #ddd;
        }

        .social-login p::before {
            left: 0;
        }

        .social-login p::after {
            right: 0;
        }

.social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid #eee;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    transition: all 0.3s ease;
}

    .social-btn:hover {
        border-color: #fa8c16;
        color: #fa8c16;
        transform: translateY(-2px);
    }

.register-link {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

    .register-link a {
        color: #fa8c16;
        text-decoration: none;
        font-weight: 500;
    }

        .register-link a:hover {
            text-decoration: underline;
        }

.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

    .forgot-password a {
        color: #fa8c16;
        text-decoration: none;
        font-size: 14px;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }

.remember-me {
    margin-top: 15px;
}

    .remember-me .el-checkbox__label {
        font-size: 14px;
        color: #666;
    }
