/* Forms */

input[type='text'],
input[type='email'],
input[type='number'],
input[type='password'],
input[type='phone'],
input[type='tel'],
input[type='date'],
input[type='url'],
input[type='search'] {
    display: block;
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-radius: var(--corner-radius-large);
    border-color: var(--white);
    background-color: var(--white);
    font-size: 1.8rem;
    line-height: 1.333;
    font-weight: normal;
    font-style: normal;
    color: var(--black);
    margin: 0;
    padding: 0.8rem 1.2rem;
    -webkit-appearance: none;
    appearance: none;
    font-family: var(--font-1);
    height: auto;
}

input[type='file'] {
    display: block;
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-radius: var(--corner-radius-large);
    border-color: var(--white);
    background-color: var(--white);
    font-size: 1.8rem;
    line-height: 1.333;
    font-weight: normal;
    font-style: normal;
    color: var(--black);
    margin: 0;
    padding: 0.8rem 1.2rem;
    -webkit-appearance: none;
    appearance: none;
    font-family: var(--font-1);
    height: auto;
}

select {
    display: block;
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-radius: var(--corner-radius-large);
    border-color: var(--white);
    background-color: var(--white);
    font-size: 1.8rem;
    line-height: 1.333;
    font-weight: normal;
    font-style: normal;
    color: var(--black);
    margin: 0;
    padding: 0.8rem 1.2rem;
    -webkit-appearance: none;
    appearance: none;
    font-family: var(--font-1);
    height: auto;
    background-repeat: no-repeat;
    background-position: calc(100% - 1.2rem);
    background-size: 1.6rem;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSI5LjE5MiIgdmlld0JveD0iMCAwIDE2IDkuMTkyIj48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDkuMTkyKSI+PHBhdGggZD0iTTgsMCwwLTcuNzc4LDEuNDU1LTkuMTkyLDgtMi44MjhsNi41NDUtNi4zNjRMMTYtNy43NzhaIiBmaWxsPSIjMDExNjM3IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L2c+PC9zdmc+');
}

textarea {
    display: block;
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-radius: var(--corner-radius-large);
    border-color: var(--white);
    background-color: var(--white);
    font-size: 1.8rem;
    line-height: 1.333;
    font-weight: normal;
    font-style: normal;
    color: var(--black);
    margin: 0;
    padding: 0.8rem 1.2rem;
    -webkit-appearance: none;
    appearance: none;
    min-height: 4rem;
    font-family: var(--font-1);
}

/* RESPONSIVE */

@media (max-width: 1600px) {
}

@media (max-width: 1200px) {
}

@media (max-width: 990px) {
}

@media (max-width: 750px) {
}

@media (max-width: 600px) {
}

@media (max-width: 400px) {
}
