* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #EFF3F5;
}

.form_register {
    width: 400px;
    padding: 30px;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    color: black;
    box-shadow: 7px 13px 37px rgba(0, 0, 0, 0.671);
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.form_register .block {
    grid-column: 1/3;
}

.form_register h4 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.controls {
    width: 100%;
    background: #24303c;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #1f53c5;
    font-size: 16px;
    color: white;
}

.form_register p {
    height: 30px;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    line-height: 30px;
    color: black;
}

.form_register a {
    color: black;
    text-decoration: none;

}

.form_register a:hover {
    text-decoration: underline;
}

.form_register .botons {
    width: 100%;
    background-color: #1f53c5;
    padding: 12px;
    border: none;
    color: white;
    margin: 16px 0;
    font-size: 16px;
    cursor: pointer;
}

.form_register input[type="radio"] {
    display: none;
}

.form_register label {
    color: black;
    background: rgba(114, 114, 114, 0.377);
    padding: 5px 15px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: all 300ms;
}

.form_register label:hover {
    background: #1f53c5;
    color: white;
}

.form_register input[type="radio"]:checked + label {
    background: #1f53c5;
    color: white;
}

.form_register h2 {
    font-weight: 400;
    font-size: 16px;
}

.alerta{
    text-align: center;
    color: red;
    width: 100%;
    grid-column: 1/3;
}

.success{
    text-align: center;
    color: green;
    width: 100%;
    grid-column: 1/3;
}

@media (max-width:700px) {
    .form_register {
        width: 90%;
        margin-top: 20px;
    }
    
}