.quick-quote-form {
    position: relative;
    width: 100%;
}

.quick-quote-form input[type="tel"] {
    width: 100%;
    min-height: 66px;
    padding: 18px 220px 18px 24px;
    border: 2px solid transparent;
    border-radius: 5px;
    background: #ffffff;
    color: #17172c;
    font-size: 16px;
    outline: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.quick-quote-form input[type="tel"]:focus {
    border-color: #8b164d;
    box-shadow: 0 0 0 4px rgba(139, 22, 77, 0.16);
}

.quick-quote-form .theme-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    min-width: 190px;
    border: 0;
}

.quick-quote-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.quick-quote-note {
    margin: 10px 0 0 !important;
    padding: 0 !important;
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 13px;
    line-height: 1.5;
}

.quick-quote-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.quick-quote-message--success {
    border: 1px solid rgba(72, 201, 120, 0.5);
    background: rgba(72, 201, 120, 0.14);
    color: #baffd2;
}

.quick-quote-message--error {
    border: 1px solid rgba(255, 100, 100, 0.5);
    background: rgba(255, 100, 100, 0.14);
    color: #ffd2d2;
}

@media (max-width: 575px) {
    .quick-quote-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .quick-quote-form input[type="tel"] {
        padding: 16px 18px;
    }

    .quick-quote-form .theme-btn {
        position: static;
        width: 100%;
        min-height: 58px;
        transform: none;
    }
}