.login-section {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 70px 0px;
    min-height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 400px;
    min-width: 320px;
    margin: auto;
}

.login-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.login-form-card {
    width: 100%;
    background: #fff;
    border-radius: var(--radius);
    padding: calc(var(--spacing) * 2);
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
}

.form-title {
    font-size: 20px;
}

.form-subtitle {
    color: #000000;
    font-size: 14px;
    letter-spacing: var(--letter-spacing);
    margin: 0px 0 15px 0;
}

/* Alert Messages */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.alert svg {
    flex-shrink: 0;
}

.alert-success {
    background-color: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.alert-error {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.input-wrapper, .password-wrapper {
    position: relative;
}

.password-hint {
    font-size: 12px;
    color: #aaa;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 25px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color var(--transition);
}

.password-toggle:hover {
    color: #374151;
    background: transparent !important;
    box-shadow: unset;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing);
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #374151;
}

.forgot-link {
    color: #c9a037;
    text-decoration: none;
    font-weight: var(--font-weight);
    font-size: 14px;
    transition: color var(--transition);
}

.checkbox-custom {
    min-width: 18px;
    height: 18px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
    position: relative;
    transition: all var(--transition);
}

.checkbox-input {
    display: none;
}

.checkbox-input:checked+.checkbox-custom {
    background: #16a34a;
    border-color: #16a34a;
}

.checkbox-input:checked+.checkbox-custom::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 3px;
    height: 7px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-disclaimer {
    font-size: 14px;
    margin-bottom: var(--spacing);
    text-align: center;
}

.form-disclaimer a {
    color: #c9a037;
    text-decoration: none;
}

.form-footer {
    margin-top: var(--spacing);
    text-align: center;
}

.register-link {
    color: #6b7280;
    margin: 0px;
}

.register-btn {
    color: #c9a037;
    text-decoration: none;
    font-weight: var(--font-weight);
    margin-left: 0.25rem;
    transition: color var(--transition);
}

/* ===== SOCIAL LOGIN STYLES ===== */

.social-login-section {
    margin-bottom: var(--spacing);
}

.social-buttons {
    display: flex;
    flex-direction: row;
    gap: var(--spacing);
}

.social-buttons .btn {
    width: 33.33%;
    flex-direction: column;
    align-items: center;
    padding: calc(var(--spacing) * 0.75);
    line-height: 1;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Google Button - Official Google Brand Colors */
.google-btn {
    background: #ffffff;
    border: 1px solid #dadce0;
    color: #000000;
}

.google-btn:hover {
    background: #3367d6;
    color: white;
}

.google-btn:active {
    background: #2b5cb0;
}

/* Facebook Button - Official Facebook Brand Colors */
.facebook-btn {
    background: #1877f2;
    color: white;
}

.facebook-btn:hover {
    background: #166fe5;
    color: white;
}

.facebook-btn:active {
    background: #1460cc;
}

/* Twitter Button - Official Twitter Brand Colors */
.twitter-btn {
    background: #1da1f2;
    color: white;
}

.twitter-btn:hover {
    background: #1a91da;
    color: white;
}

.twitter-btn:active {
    background: #1781c2;
}

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

.divider {
    position: relative;
    text-align: center;
    margin: var(--spacing) 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: #6b7280;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

/* Mobile Social Login */
@media (max-width: 768px) {
    .social-buttons {
        gap: 0.5rem;
    }

    .social-btn {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .social-btn svg {
        width: 18px;
        height: 18px;
    }
}
/* ===== MULTI-STEP REGISTRATION STYLES ===== */

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Navigation Buttons */
.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-prev,
.btn-next {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-prev {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-prev:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.btn-next {
    color: white;
}

/* Responsive Design */
@media (max-width: 640px) {
    .form-navigation {
        flex-direction: column;
    }

    .btn-prev,
    .btn-next {
        width: 100%;
    }
}

/* User Type Selection */
.user-type-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing);
    margin-top: var(--spacing);
}

.user-type-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.user-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.user-type-content {
    padding: var(--spacing);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    background: white;
    text-align: center;
    transition: all 0.3s ease;
}

.user-type-icon {
    margin: 0 auto 1rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s ease;
}

.user-type-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.user-type-content p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.user-type-card:hover .user-type-content {
    border-color: #0A5B35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 91, 53, 0.15);
}

.user-type-card:hover .user-type-icon {
    background: #f0fdf4;
    color: #0A5B35;
}

.user-type-card input[type="radio"]:checked + .user-type-content {
    border-color: #0A5B35;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    box-shadow: 0 4px 12px rgba(10, 91, 53, 0.2);
}

.user-type-card input[type="radio"]:checked + .user-type-content .user-type-icon {
    background: linear-gradient(135deg, #0A5B35 0%, #0d7345 100%);
    color: white;
}

.user-type-card input[type="radio"]:checked + .user-type-content h4 {
    color: #0A5B35;
}

@media (max-width: 768px) {
    .user-type-options {
        grid-template-columns: 1fr;
    }

    .user-type-content {
        padding: 1.25rem;
    }

    .user-type-icon {
        width: 50px;
        height: 50px;
    }

    .user-type-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Form Validation & Error Styles */
.error-message {
    display: block;
    color: #dc2626;
    font-size: 13px;
    margin-top: 0.25rem;
    letter-spacing: var(--letter-spacing);
    font-weight: 500;
    line-height: 1.4;
}

.error-message.js-error {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-error {
    border-color: #dc2626 !important;
    background-color: #fef2f2 !important;
}

.input-error:focus {
    outline: none;
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

/* ===== END OF MULTI-STEP REGISTRATION STYLES ===== */

/* ===== EMAIL VERIFICATION STYLES ===== */
.verification-message {
    text-align: center;
}

.verification-icon {
    color: #fff;
    background: #0A5B35;
    border-radius: var(--radius);
    padding: calc(var(--spacing) - 10px);
    height: 50px;
    width: 50px;
}

.verification-message p {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.hint-text {
    font-size: 14px;
    color: #6b7280;
}

.verification-actions {
    display: flex;
    gap: var(--spacing);
}

.verification-actions form {
    flex: 1;
}

.verification-actions button {
    width: 100%;
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #e5e7eb;
    color: #1f2937;
}

@media (max-width: 640px) {
    .verification-actions {
        flex-direction: column;
    }
}

.verification-success-icon {
    color: #fff;
    background: #0A5B35;
    border-radius: 50%;
    padding: 1rem;
    height: 64px;
    width: 64px;
    margin: 0 auto;
}
/* ===== END OF EMAIL VERIFICATION STYLES ===== */

/* ===== GOOGLE MAPS AUTOCOMPLETE STYLES ===== */
/* Style Google Maps autocomplete dropdown */
.pac-container {
    background-color: #fff;
    border-radius: var(--radius);
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin-top: 4px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    z-index: 9999;
}

.pac-container:after {
    display: none;
}

.pac-item {
    padding: 10px 12px;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    line-height: 1.5;
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover {
    background-color: #f9fafb;
}

.pac-item-selected,
.pac-item-selected:hover {
    background-color: #f0fdf4;
}

.pac-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230A5B35' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M5.05 4.05a7 7 0 119.9 9.9L10 18.9l-4.95-4.95a7 7 0 010-9.9zM10 11a2 2 0 100-4 2 2 0 000 4z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.pac-item-query {
    font-weight: 600;
    color: #111827;
}

.pac-matched {
    font-weight: 600;
    color: #0A5B35;
}

/* Hide Google logo (optional) */
.pac-logo:after {
    display: none;
}

@media (max-width: 640px) {
    .pac-container {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }
}
/* ===== END OF GOOGLE MAPS AUTOCOMPLETE STYLES ===== */

/* ===== EMAIL AVAILABILITY CHECKER STYLES ===== */
.email-input-wrapper {
    position: relative;
}

.email-feedback {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.email-feedback svg {
    width: 20px;
    height: 20px;
}

.email-feedback.available svg {
    color: #0A5B35;
}

.email-feedback.unavailable svg {
    color: #dc2626;
}

.email-feedback.checking .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #e5e7eb;
    border-top-color: #0A5B35;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.email-status-message {
    font-size: 13px;
    display: block;
}

.email-status-message.checking {
    color: #6b7280;
}

.email-status-message.available {
    color: #0A5B35;
}

.email-status-message.unavailable {
    color: #dc2626;
}

/* Adjust input padding to make room for feedback icon */
.email-input-wrapper .form-input {
    padding-right: 45px;
}
/* ===== END OF EMAIL AVAILABILITY CHECKER STYLES ===== */
