/**
 * CT Leads Pro - Offer Field
 * Frontend Styles
 */

/* Offer Field Container */
.input-offer-field {
    position: relative;
    margin-bottom: 15px;
}

/* Offer Field Input */
input#ct_offer {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 0;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    font-size: 14px;
    color: #121212;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

input#ct_offer:focus {
    border-color: #0073e1;
    outline: none;
}

/* Placeholder styling */
input#ct_offer::placeholder {
    color: #8e9fad;
    opacity: 1;
}

/* Currency formatting */
.input-offer-field:before {
    content: "$";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #8e9fad;
    z-index: 1;
}

.input-offer-field input#ct_offer {
    padding-left: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .input-offer-field {
        margin-bottom: 10px;
    }
} 