/* quote request form */
section#quote-request-form {
    transition: 0.3s;
    background: white;
    z-index: 100;
}

.form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.form-container form {
    width: 100%;
    max-width: 500px;
    border: 1px solid;
    padding: 10px;
}

.form-container form .field {
    width: 100%;
    height: 40px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-container form .field.textarea {
    height: 200px;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.form-container form .field .sm-field {
    width: 48%;
    max-width: 250px;
    height: 100%;
}

.form-container form input {
    height: 100%;
    width: 100%;
    padding: 0 7px;
    border: 1px solid;
    outline: none;
}

.form-container form .field.textarea label {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 7px;
}

.form-container form .field.textarea textarea {
    height: calc(100% - 40px);
    width: 100%;
    border: 1px solid;
    padding: 7px;
    outline: none;
}

.form-container button {
    height: 40px;
    width: 150px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: "Klarheit Grotesk Regular", sans-serif;
    background: var(--yellow);
    font-weight: 500;
    margin: auto;
}

::placeholder {
    font-family: "Klarheit Grotesk Regular", sans-serif;
}