.form {
    width: 290px;
    min-height: 400px;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}
@media screen and (max-width: 340px) {
    .form_container {
        padding: 0 10px;
    }
    .form {
        width: 100%;
    }
}
body {
    display: grid;
    place-items: center;
}
.form_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
}
.form_input {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 7px;
}
.form_input div {
    margin-left: 8px;
}
.form_input .form_data {
    height: 25px;
    border: 1px solid #99f00d;
    border-radius: 7px;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    padding: 10px;
    outline: none;
    margin-top: 8px;
}
.form_right {
    width: 25px;
    height: 25px;
    align-self: flex-start;
    margin-left: 8px;
    margin-top: 8px;
}
.form_container .logo {
    height: 150px;
    margin-bottom: 20px;
    margin-top: 10px;
}
.form_input.check {
    flex-direction: row;
    font-size: 13px;
}
.form_input.check div {
    text-decoration: dotted;
    cursor: pointer;
}
.form_submit {
    height: 30px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    color: white;
    background: #99f00d;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
}
.form_select {
    height: 25px;
    border: 1px solid #99f00d;
    border-radius: 7px;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    padding: 0 10px;
    outline: none;
    margin-top: 8px;
}