@media screen and (max-width: 660px) {
    form h1 {
        font-size: 22px;
    }
}

input[type=text], input[type=date], input[type=number], input[type=password], textarea, select {
    font-size: 14px;
    padding: 10px;
    border: 1px solid rgba(198, 172, 143, .5);
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: 2.5%;
}

input[type=text], input[type=date], input[type=password], textarea {
    width: 95%;
}

input[type=number] {
    width: 100%;
}

select {
    min-width: 25%;
}

label {
    margin-left: 2.5%;
}

input[type=submit] {
    display: block;
    margin: auto;
    margin-top: 10px;
    min-width: 25%;
    padding: 10px;
    border-style: none;
    box-shadow: 0px 2px 3px 0px #C0C0C0;
    background-color: var(--background-color-dark);
    color: var(--off-white-color);
    text-transform: uppercase;
    font-size: 15px;
    border-radius: 5px;
}

input[type=submit]:hover {
    background-color: var(--hover-color-brown);
    cursor: pointer;
}

#result {
    text-align: center;
    margin-bottom: 0px;
}

#price-data {
    display: flex;
    gap: 2em;
    margin-left: 2.5%;
}

.price-data-content {
    > label, input {
        margin-left: 0px;
    }
}
