/* BolGini Signup Form Custom Styles */

/* Remove black outlines from all form elements */
.geex-content__authentication__form-group input,
.geex-content__authentication__form-group select,
.geex-content__authentication__form-group textarea {
    border: 1px solid #e3e6f0 !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

/* Enhanced focus states with brand colors */
.geex-content__authentication__form-group input:focus,
.geex-content__authentication__form-group select:focus,
.geex-content__authentication__form-group textarea:focus {
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15) !important;
    outline: none !important;
}

/* Select dropdown styling improvements */
.geex-content__authentication__form-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 12px center !important;
    background-repeat: no-repeat !important;
    background-size: 16px 12px !important;
    padding-right: 40px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

/* Textarea specific styling */
.geex-content__authentication__form-group textarea {
    resize: vertical !important;
    min-height: 80px !important;
    padding: 15px 20px !important;
    font-family: inherit !important;
}

/* Business email notice enhancements */
.business-email-notice {
    animation: slideInFromTop 0.5s ease-out;
}

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

/* Enhanced benefits display */
.geex-content__authentication__benefits {
    transition: all 0.3s ease !important;
    border: 1px solid rgba(0, 123, 255, 0.2) !important;
}

.geex-content__authentication__benefits:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15) !important;
}

/* Form group spacing improvements */
.geex-content__authentication__form-group {
    margin-bottom: 20px !important;
}

/* Label styling */
.geex-content__authentication__form-group label {
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 8px !important;
    font-size: 15px !important;
}

/* Input padding and height adjustments */
.geex-content__authentication__form-group input,
.geex-content__authentication__form-group select {
    height: 50px !important;
    padding: 0 18px !important;
    margin-bottom: 0 !important;
    font-size: 15px !important;
    border-radius: 8px !important;
}

.geex-content__authentication__form-group textarea {
    padding: 15px 18px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
}

/* Submit button enhancements */
.geex-content__authentication__form-submit {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 15px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: white !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3) !important;
}

.geex-content__authentication__form-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4) !important;
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%) !important;
}

.geex-content__authentication__form-submit:active {
    transform: translateY(0) !important;
}

/* Small text styling */
.form-text {
    color: #6c757d !important;
    font-size: 13px !important;
    margin-top: 5px !important;
    line-height: 1.4 !important;
}

/* Terms section styling */
.geex-content__authentication__terms {
    background-color: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 16px !important;
    margin-top: 20px !important;
}

.geex-content__authentication__terms p {
    margin: 0 !important;
    color: #6c757d !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    text-align: center !important;
}

.geex-content__authentication__terms a {
    color: #007bff !important;
    text-decoration: none !important;
}

.geex-content__authentication__terms a:hover {
    text-decoration: underline !important;
}

/* Error state styling */
.geex-content__authentication__form-group input.error,
.geex-content__authentication__form-group select.error,
.geex-content__authentication__form-group textarea.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !important;
}

/* Success state styling */
.geex-content__authentication__form-group input.success,
.geex-content__authentication__form-group select.success,
.geex-content__authentication__form-group textarea.success {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15) !important;
}

/* Loading state for submit button */
.geex-content__authentication__form-submit.loading {
    pointer-events: none !important;
    opacity: 0.8 !important;
}

.geex-content__authentication__form-submit.loading span {
    opacity: 0.7 !important;
}

.geex-content__authentication__form-submit.loading::after {
    content: '' !important;
    position: absolute !important;
    width: 20px !important;
    height: 20px !important;
    margin: auto !important;
    border: 2px solid transparent !important;
    border-top-color: white !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .business-email-notice {
        flex-direction: column !important;
        text-align: center !important;
        gap: 8px !important;
    }
    
    .business-email-notice i {
        font-size: 24px !important;
    }
    
    .geex-content__authentication__benefits {
        padding: 15px !important;
    }
    
    .geex-content__authentication__benefits > div {
        flex-direction: column !important;
        gap: 10px !important;
    }
}

/* Enhanced benefits display for different email types */
.benefit-upgrade {
    animation: highlight 0.8s ease-in-out;
}

@keyframes highlight {
    0% { background-color: rgba(40, 167, 69, 0.1); }
    50% { background-color: rgba(40, 167, 69, 0.2); }
    100% { background-color: rgba(40, 167, 69, 0.1); }
}

/* Improved visual hierarchy */
.geex-content__authentication__title {
    color: #1a202c !important;
    margin-bottom: 8px !important;
}

.geex-content__authentication__desc {
    color: #718096 !important;
    margin-bottom: 30px !important;
}

/* Footer link styling */
.geex-content__authentication__form-footer {
    text-align: center !important;
    margin-top: 20px !important;
}

.geex-content__authentication__form-footer p {
    color: #6c757d !important;
    margin: 0 !important;
    font-size: 14px !important;
}

.geex-content__authentication__form-footer a {
    color: #007bff !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.geex-content__authentication__form-footer a:hover {
    text-decoration: underline !important;
    color: #0056b3 !important;
}
