.content_form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header_form {
    font-size: 20px;
    margin: 20px;
    text-align: center;
    font-weight: bold;
}

.body_form {
    width: 30%;
}

.form_form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
}

.form_form p {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
}

input {
    align-items: end;
    width: 100%;
    height: 3vh;
    font-size: medium;
}

input:focus {
    outline: none;
    border: 1px, solid, rgb(63, 133, 63);
    background-color: rgb(186, 219, 186);
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form div {
    margin: 2px;
}
form p{
    margin-top: 5px;
}

label {
    font-weight: bold;
}

.button_form {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.button_form button, .button_form a {
    margin: 5px;
    width: 100%;
    font-size: 120%;
    color: white;
    text-align: center;
    text-decoration: none;
}

.btn_enter {
    background-color: rgba(20, 109, 20, 0.7);
    border: 1px, solid, rgba(20, 109, 20, 0.7);
    color: white;
}

.btn_enter:hover {
    background-color: rgb(20, 109, 20);
    border: 1px, solid, rgb(20, 109, 20);
    color: white;
}

.btn_esc {
    background-color: rgba(163, 15, 15, 0.7);
    border: 1px, solid, rgba(163, 15, 15, 0.7);
    color: white;
}

.btn_esc:hover {
    background-color: rgb(163, 15, 15);
    border: 1px, solid, rgb(202, 39, 39);
    color: white;
}

/* Профиль */
.form_form_profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.image_form {
    width: 70%;
    padding-bottom: 70%;
    border-radius: 50%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border: 2px solid rgb(0, 0, 0);

}

.user_text {
    text-align: center;
}

.user_text span {
    display: flex;
    justify-content: space-between;
    margin: 15px;
}

.user_text div {
    width: 50%;
}

.label_user {
    font-weight: bold;
}

@media screen and (max-width: 722px) {
    .user_text span {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 1px;
    }

    .button_form {
        display: flex;
        flex-direction: column;
    }

}
