.appeals__form{
    margin: 25px 0;
}
.form__content{
    max-width: 450px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.form__title{
    margin-bottom: 20px;
}
.form__content .select{
    margin-bottom: 15px;
}
.form__content input{
    height: 35px;
    padding-left: 10px;
    border-radius: 5px;
    border: 1px solid #262626;
    font-size: 18px;
    margin: 2px 0;
}
.form__content .mail{
    margin-bottom: 15px;
}
.form__content [type="text"]:focus {
    outline: none;
    border-color: blue;
}
.form__content input.error{
    border-color: red;
}
.form__content input.ok{
    border-color: rgb(0, 255, 96);
}
.appeals__button{
    width: 100%;
    height: 55px;
    margin-top: 25px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgb(0, 255, 96);
    user-select: none;
    cursor: pointer;
}
.appeals__button:focus{
    outline: none;
    border: 1px solid blue;
}
.appeals__button:active{
    background-color: rgb(0, 160, 0);
}

.textarea{
    min-width: 100%;
    max-width: 100%;
    min-height: 150px;
    max-height: 150px;
    border-radius: 5px;
    margin-top: 15px;
    border: 1px solid #262626;
    font-size: 18px;
    padding-left: 10px;
}
.textarea:focus {
    outline: none;
    border-color: blue;
}