
/* =============================================================================
   13. Warranty PAGE
   ============================================================================= */
   .moisture-bg {
    background: linear-gradient(45deg, #e3f2fd, #bbdefb);
}

.droplet-icon {
    color: #1565c0;
}

.form-control:focus {
    border-color: #1565c0;
    box-shadow: 0 0 0 0.2rem rgba(21, 101, 192, 0.25);
}

.btn-moisture {
    background-color: #1565c0;
    color: white;
    border: none;
}

.btn-moisture:hover {
    background-color: #0d47a1;
    color: white;
}
.captcha-container {
    border: 1px solid #dee2e6;
    padding: 15px;
    border-radius: 4px;
    background-color: #f8f9fa;
}

#captchaText {
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    padding: 8px 15px !important;
    border-radius: 4px;
    font-size: 1.2rem;
    position: relative;
    min-width: 120px;
    text-align: center;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

#successMessage {
    transition: opacity 0.5s ease-in-out;
}

#successMessage.fade-out {
    opacity: 0;
}