.display_none {
    display: none;
}
.news_title h1 {
    font-size: 23px;
    text-align: center;
    margin: 0;
}
.news {
    border: 2px #ec5a5a solid;
    margin: 0 auto;
    width: 90%;
    border-radius: 10px;
    margin-bottom: 50px;
    margin-top: 30px;
}
.news_title {
    background-color: #ec5a5a;
    color: white;
}
.news_system_text {
    padding: 10px 15px;
}

h1 {
    font-size: 23px;
    text-align: center;
    margin-top: 70px;
}
.form {
    width: 60%;
    margin: 0 auto;
    margin-top: 30px;
}
.form h1 {
    font-size: 20px;
    text-align: center;
}
form input {
    height: 25px;
    padding: 5px 15px;
}
form textarea {
    height: 130px;
    min-height: 130px;
    max-height: 170px;
    padding: 10px 15px;
    resize: vertical;
}
form div {
    margin-top: 20px;
}
form input, form textarea {
    width: 100%;
    margin-top: 10px;
    border: 1px #B8B8B8 solid;
    border-radius: 5px;
}
form label {
    font-weight: bold;
}
.submit {
    text-align: center;
}
form button {
    width: 200px;
    font-size: 16px;
    background-color: #1D187E;
    color: white;
    border-radius: 5px;
    height: 40px;
    cursor: pointer;
    border: none;
    margin-bottom: 50px;
    margin-top: 20px;
    transition: .5s;
}
form button:hover {
    background-color: #484499;
}
.check input, .feedback input {
    width: 50px;
    position: relative;
    top: 7px;
    cursor: pointer;
}
.check div {
    margin: 0 auto;
    width: 120px;
}
.check label {
    line-height: 80px;
    user-select: none;
    cursor: pointer;
}
@media screen and (max-width: 450px) {
    .form {
        width: 90%;
    }
    form input, form textarea {
        width: 90%;
    }
    label {
        white-space: normal !important;
    }
}
