/* Book a Demo Modal Styles */
#contact-modal input:focus,
#contact-modal textarea:focus {
    outline: none;
    border-color: #0b1556;
}

#contact-modal input::placeholder,
#contact-modal textarea::placeholder {
    opacity: 0.5;
}

.lqd-form-control-wrap:has(.error-message) {
    margin-bottom: 15px;
}

/* Form label styles */
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

#btnModalSubmit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

    #btnModalSubmit:hover {
        background-color: #0a1e56 !important;
        opacity: 0.9;
    }

    #btnModalSubmit:disabled {
        opacity: 0.8;
        cursor: not-allowed;
    }

/* Button loader styles */
.btn-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.error_border_red {
    border-color: #dc3545 !important;
}

.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}
