/**
 * Formularios
 * Remodelando Pixel
 */

.rmd-quote-form {
    display: grid;
    gap: 11px;
}

.rmd-form-field {
    position: relative;
}

.rmd-form-field label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.rmd-form-field input,
.rmd-form-field textarea,
.rmd-form-field select {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid var(--rmd-gray-200);
    border-radius: 5px;
    outline: none;
    color: var(--rmd-text);
    background: var(--rmd-white);
    font-size: 13px;
    transition:
        border-color var(--rmd-transition),
        box-shadow var(--rmd-transition);
}

.rmd-form-field input,
.rmd-form-field select {
    min-height: 44px;
}

.rmd-form-field textarea {
    min-height: 94px;
    resize: vertical;
}

.rmd-form-field input:focus,
.rmd-form-field textarea:focus,
.rmd-form-field select:focus {
    border-color: var(--rmd-green-dark);
    box-shadow:
        0 0 0 3px rgba(121, 149, 47, 0.12);
}

.rmd-form-field input::placeholder,
.rmd-form-field textarea::placeholder {
    color: #999;
}

.rmd-btn__whatsapp {
    font-size: 18px;
}