/* Authentication Pages Styles */

.auth-section {
    padding: 80px 0;
    background-color: #fff;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.auth-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo a h1 {
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
}

.logo a:hover h1 {
    opacity: 0.8;
}

.auth-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #4D008D;
    margin: 0 0 10px 0;
}

.auth-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.auth-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4D008D;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus {
    outline: none;
    border-color: #4D008D;
    box-shadow: 0 0 0 3px rgba(77, 0, 141, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.form-hint {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 6px;
}

.forgot-password {
    display: inline-block;
    font-size: 14px;
    color: #4D008D;
    text-decoration: none;
    margin-top: 8px;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #6B1FA0;
    text-decoration: underline;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #4D008D;
}

.checkbox-label a {
    color: #4D008D;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #6B1FA0;
}

.btn-auth {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #FF1493;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.btn-auth:hover {
    background-color: #E0117A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.btn-auth:active {
    transform: translateY(0);
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: #999;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.auth-divider span {
    padding: 0 15px;
    font-size: 14px;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.btn-social {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-social:hover {
    border-color: #999;
    background-color: #f8f8f8;
}

.btn-social svg {
    flex-shrink: 0;
}

.auth-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.auth-footer p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.auth-footer a {
    color: #4D008D;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    color: #6B1FA0;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .auth-section {
        padding: 40px 0;
    }

    .auth-container {
        width: 100%;
        max-width: 500px;
        padding: 30px 20px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .auth-header h1 {
        font-size: 28px;
    }

    .auth-header p {
        font-size: 14px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="password"] {
        padding: 12px 14px;
        font-size: 16px;
    }

    .btn-auth {
        padding: 14px;
        font-size: 15px;
    }

    .btn-social {
        padding: 12px 14px;
        font-size: 14px;
    }
}
