/* Authentication Pages Styles (Login, Register, etc.) */

/* Authentication Pages Styling */
.auth-section {
    padding: 120px 0 80px 0;
    min-height: 100vh;
}

.auth-page .auth-form-wrapper {
    background: transparent !important;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Card transparency for privacy policy and similar pages */
.privacy-card-transparent {
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 15px !important;
}

/* Privacy policy specific styling */
#privacy-policy.auth-section {
    background: linear-gradient(rgba(248, 249, 250, 0.4), rgba(233, 236, 239, 0.5)), url('../img/photo-1573484092370-322f5cb856d4.png') center/cover no-repeat fixed !important;
    min-height: 100vh;
}

/* Contact form textarea fix */
textarea.form-control {
    height: auto !important;
    min-height: 80px !important;
}

/* Fix textarea icon positioning */
.bi-chat-text {
    position: absolute !important;
    top: 20px !important;
    left: 16px !important;
    z-index: 5 !important;
}

.auth-header h2 {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 10px;
}

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

.auth-form .form-label {
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.auth-form .input-with-icon {
    position: relative;
}

.auth-form .input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 16px;
    z-index: 2;
}

.auth-form .input-with-icon .form-control {
    padding-left: 45px;
    height: 50px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-form .input-with-icon .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--accent-color-rgb), 0.25);
}

.auth-form .btn-primary {
    height: 50px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

.auth-form .form-check {
    margin: 20px 0;
}

.auth-form .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.auth-links {
    border-top: 1px solid #e1e5e9;
    padding-top: 20px;
}

.auth-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.register-link {
    margin-top: 10px;
}

/* Responsive Design for Auth Pages */
@media (max-width: 768px) {
    .auth-form-wrapper {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .auth-section {
        padding: 40px 0;
    }
}