/* ===================================
   AGRISYNCH - Login & Signup Styles
   Isolated styles for authentication pages
   =================================== */

/* Login Page */
#loginPage {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--primary-dark) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

#loginPage::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(46, 204, 113, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

#loginPage::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(46, 204, 113, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

#loginPage.page.active {
    display: flex !important;
}

.login-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 40px;
    color: white;
    position: relative;
    z-index: 2;
}

.login-info-content {
    max-width: 420px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.3);
}

.login-info-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    color: white;
    letter-spacing: -1px;
}

.login-info-content .tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    margin: 8px 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.login-info-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #b0bec5;
    font-weight: 300;
}

.info-main-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.info-showcase-container {
    margin: 12px 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    max-height: 200px;
}

.showcase-placeholder {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(46, 204, 113, 0.05));
    border: 2px dashed rgba(46, 204, 113, 0.3);
    border-radius: 12px;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 200px;
    overflow: hidden;
}

.showcase-placeholder i {
    font-size: 48px;
    color: var(--primary-green);
    opacity: 0.6;
}

.showcase-placeholder p {
    color: #b0bec5;
    font-size: 16px;
    font-weight: 500;
}

.showcase-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.info-detail-card {
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.15);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-detail-card:hover {
    background: rgba(46, 204, 113, 0.12);
    border-color: rgba(46, 204, 113, 0.25);
    transform: translateY(-2px);
}

.detail-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    margin: 0 auto 10px;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.25);
}

.info-detail-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin: 0 0 6px 0;
}

.info-detail-card p {
    font-size: 12px;
    color: #b0bec5;
    line-height: 1.4;
    margin: 0;
}

.info-features-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(46, 204, 113, 0.15);
}

.info-features-section h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 14px 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cfd8dc;
    font-size: 13px;
}

.benefits-list i {
    color: var(--primary-green);
    font-size: 16px;
}

.login-info-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 20px;
}

.feature-card {
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.15);
    border-radius: 12px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    background: rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.2);
}

.feature-icon-large {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.25);
}

.feature-card span {
    font-size: 13px;
    font-weight: 500;
    color: #cfd8dc;
    line-height: 1.4;
}

.feature-card:hover span {
    color: white;
}

.login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.login-form-wrapper {
    width: 100%;
    max-width: 450px;
    animation: slideIn 0.6s ease;
}

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

.login-box {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, rgba(46, 204, 113, 0.02) 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 1px rgba(46, 204, 113, 0.2) inset;
    border: 1px solid rgba(46, 204, 113, 0.1);
    backdrop-filter: blur(10px);
    max-width: 900px;
    transition: all 0.3s ease;
}

.login-box:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(46, 204, 113, 0.15);
}

.signup-box {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, rgba(46, 204, 113, 0.02) 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 1px rgba(46, 204, 113, 0.2) inset;
    border: 1px solid rgba(46, 204, 113, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
    width: 100%;
}

.signup-box {
    display: none;
    max-height: 80vh;
    overflow-y: auto;
}

/* Ensure signup box follows the container width (higher specificity) */
#loginPage .signup-container,
#loginPage .signup-box {
    max-width: 700px;
    width: 100%;
}

/* Stronger override to ensure signup isn't constrained by other containers/rules */
#loginPage > .signup-container .signup-box,
#loginPage .signup-container > .signup-box,
#loginPage .signup-box {
    max-width: 700px !important;
    width: 100% !important;
    margin: 0 auto !important;
    /* do not force display here — visibility should be controlled by page state */
}

.login-header,
.signup-header {
    text-align: left;
    margin-bottom: 32px;
}

/* Layout the signup header as a row: heading left, back button right */
.signup-header {
    position: relative;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.signup-header h2 {
    color: var(--white);
    font-size: 28px;
    margin: 0;
}

.logo-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.logo-login i {
    font-size: 48px;
    color: var(--primary-green);
}

.logo-login h1 {
    font-size: 32px;
    color: var(--white);
    font-weight: 700;
}

.login-header p,
.signup-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.btn-back {
    position: relative;
    order: 1;
    margin: 0;
    background: transparent;
    border: none;
    color: var(--primary-green);
    cursor: pointer;
    padding: 8px;
    font-size: 14px;
    transition: var(--transition);
    z-index: 2;
    transform: none;
}

.btn-back:hover {
    color: var(--primary-green-dark);
    transform: translateX(-6px);
}

/* Form Section Header */
.form-section-header {
    margin-top: 24px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.form-section-header h3 {
    font-size: 16px;
    color: var(--primary-green);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(45, 45, 50, 0.9);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Select option styling for better visibility */
.form-group select option {
    background: #2d2d32;
    color: #e0e0e0;
    padding: 8px;
}

.form-group select option:checked {
    background: #2ecc71;
    color: #1a1a1a;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(45, 45, 50, 0.95);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15), inset 0 0 0 1px rgba(46, 204, 113, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Password Toggle Styles */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(46, 204, 113, 0.05));
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: var(--primary-green);
    cursor: pointer;
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.password-toggle:hover {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(46, 204, 113, 0.15));
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.password-toggle:active {
    transform: scale(0.95);
}

.password-toggle i {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Role Selection */
.role-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.role-option {
    display: flex;
    align-items: center;
    padding: 16px;
    background: var(--tertiary-dark);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.role-option:hover {
    border-color: var(--primary-green);
}

.role-option input[type="radio"] {
    width: auto;
    margin-right: 12px;
}

.role-option label {
    cursor: pointer;
    margin: 0;
    font-size: 14px;
}

.role-option input[type="radio"]:checked + label {
    color: var(--primary-green);
    font-weight: 600;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(46, 204, 113, 0.4);
}

.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.btn-secondary {
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-green);
    border: 1.5px solid var(--primary-green);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(46, 204, 113, 0.15);
    border-color: var(--primary-green-dark);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Login Divider */
.login-divider {
    text-align: center;
    margin: 24px 0;
    color: var(--text-secondary);
    position: relative;
}

.login-divider::before,
.login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-color);
}

.login-divider::before {
    left: 0;
}

.login-divider::after {
    right: 0;
}

/* Farmer Fields */
#farmerFields {
    display: none;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
}

/* Forgot Password Button */
.btn-link {
    background: none;
    border: none;
    color: var(--primary-green);
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.btn-link:hover {
    color: var(--primary-bright);
    text-decoration: underline;
}

/* Forgot Password Modal */
.forgot-password-container {
    text-align: center;
}

.forgot-password-container h2 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 20px;
}

.forgot-password-container p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
}

.modal-centered {
    max-width: 400px !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 576px) {
    .login-container {
        padding: 16px;
    }

    .login-box,
    .signup-box {
        padding: 24px;
    }

    .logo-login h1 {
        font-size: 24px;
    }

    .logo-login i {
        font-size: 36px;
    }

    .role-selection {
        grid-template-columns: 1fr;
    }
}
/* ===================================
   INPUT VALIDATION STYLES
   Real-time validation feedback
   =================================== */

.input-error {
    border-color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.2) !important;
    color: #ff6b6b !important;
}

.input-error:focus {
    outline: none;
    border-color: #c0392b !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
    background-color: rgba(231, 76, 60, 0.25) !important;
}

.field-error-message {
    display: none;
    color: #c0392b;
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
    margin-bottom: 0;
    display: block;
    animation: slideDown 0.2s ease-out;
    min-height: 16px;
    line-height: 1.3;
    flex-grow: 0;
    flex-shrink: 0;
}

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

/* Success state */
.input-success {
    border-color: #27ae60 !important;
    background-color: #eafaf1 !important;
}

.input-success:focus {
    outline: none;
    border-color: #1e8449 !important;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1) !important;
}

/* Warning state for password requirements */
.input-warning {
    border-color: #f39c12 !important;
    background-color: #fef5e7 !important;
}

.input-warning:focus {
    outline: none;
    border-color: #d68910 !important;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1) !important;
}

/* Password strength indicator */
.password-strength {
    height: 4px;
    background-color: #ecf0f1;
    border-radius: 2px;
    margin-top: 6px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 2px;
}

.password-strength-bar.weak {
    width: 33%;
    background-color: #e74c3c;
}

.password-strength-bar.fair {
    width: 66%;
    background-color: #f39c12;
}

.password-strength-bar.strong {
    width: 100%;
    background-color: #27ae60;
}

.form-group {
    position: relative;
}

/* Validation checkmark */
.validation-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
}

.validation-icon.success {
    color: #27ae60;
}

.validation-icon.error {
    color: #e74c3c;
}

/* ===================================
   EMAIL VERIFICATION MODAL
   =================================== */

.email-verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--primary-dark) 100%);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.email-verification-modal.active {
    display: flex !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.email-verification-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 50px 45px;
    max-width: 520px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    text-align: center;
    animation: slideUp 0.4s ease;
}

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

.verification-header {
    margin-bottom: 30px;
}

.verification-header i {
    font-size: 64px;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: block;
}

.verification-header h2 {
    color: white;
    font-size: 32px;
    margin: 0;
    font-weight: 700;
}

.verification-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 20px 0 10px;
}

.verification-email {
    background: rgba(46, 204, 113, 0.2);
    color: var(--primary-green);
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    margin: 15px 0 20px;
    word-break: break-all;
    border: 2px solid rgba(46, 204, 113, 0.3);
    font-size: 15px;
}

.verification-info {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin: 20px 0 30px;
}

.verification-status {
    background: rgba(39, 174, 96, 0.2);
    border-left: 4px solid #2ecc71;
    color: #2ecc71;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    display: none;
}

.verification-status.show {
    display: block;
}

.verification-status.success {
    background: rgba(39, 174, 96, 0.25);
    border-left-color: #2ecc71;
    color: #2ecc71;
}

.verification-status.error {
    background: rgba(231, 76, 60, 0.2);
    border-left-color: #ff6b6b;
    color: #ff6b6b;
}

.verification-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0 20px;
}

.email-verification-modal .btn-primary,
.email-verification-modal .btn-secondary,
.email-verification-modal .btn-tertiary {
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.email-verification-modal .btn-primary {
    background: var(--primary-green);
    color: white;
}

.email-verification-modal .btn-primary:hover:not(:disabled) {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}

.email-verification-modal .btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.email-verification-modal .btn-secondary:hover:not(:disabled) {
    background: rgba(46, 204, 113, 0.15);
    transform: translateY(-2px);
}

.email-verification-modal .btn-tertiary {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.email-verification-modal .btn-tertiary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.email-verification-modal .btn-primary:disabled,
.email-verification-modal .btn-secondary:disabled,
.email-verification-modal .btn-tertiary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.verification-timer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 15px;
}

/* ===================================
   SIGNUP FORM ENHANCEMENTS
   =================================== */

/* Required asterisk */
.required {
    color: #e74c3c;
    margin-left: 2px;
}

/* Form help text */
.form-help {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    line-height: 1.4;
}

/* Form section headers */
.form-section-header {
    margin-top: 32px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(46, 204, 113, 0.2);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-header i {
    font-size: 18px;
}

/* Map container */
.map-container {
    margin-top: 24px;
    margin-bottom: 24px;
}

#signupMap {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    border: 2px solid rgba(46, 204, 113, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Location status */
.location-status {
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(45, 45, 50, 0.8);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Create Account button specific styling */
.btn-create-account {
    margin-top: 32px;
    background: var(--primary-green);
    padding: 16px 24px;
    font-size: 15px;
}

.btn-create-account:hover {
    background: var(--primary-green-dark);
}

/* Select dropdown styling */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2327ae60' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: rgba(45, 45, 50, 0.5);
}

.form-group select option {
    background: var(--secondary-dark);
    color: var(--white);
    padding: 8px;
}

/* Signup box scrollbar styling */
.signup-box::-webkit-scrollbar {
    width: 8px;
}

.signup-box::-webkit-scrollbar-track {
    background: rgba(45, 45, 50, 0.3);
    border-radius: 4px;
}

.signup-box::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

.signup-box::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-dark);
}