.container-registro{
    display: grid;
    grid-template-rows: 5em 1fr;
    width: 75%;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.body-formulario{
    background-color: rgb(246, 249, 232);
    padding: 10px;
    display: grid;
    grid-template-rows: 1fr 5em;
    justify-items: center;
    row-gap: 30px;
    border-radius: 15px;
}

.contenido-formulario{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    width: 80%;
}

.container-input{
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.input-register{
    border: 1px solid rgb(108, 191, 165);
    border-radius: 10px;
    padding: 5px;
    transition: border-color 0.3s;
    &:hover {
        border-color: rgb(0, 100, 0);
    }
    &:focus-visible{
        border-color: rgb(0, 100, 0);
    }
}

.input-register:focus{
    border-color: rgb(0, 100, 0);
}

.container-botones{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.leyenda-enviar{
    color: rgb(135, 170, 225);
    font-weight: bold;
    text-align: center;
    margin: 0;
    margin-right: 10px;
    font-size: 2em;
    line-height: 2.5em;
}

.submit-registro{
    background-color: rgb(135, 170, 225);
    border: none;
    border-radius: 10px;
    height: 65px;
    width: 100px;
    transition: background-color 0.3s;
    &:hover{
        background-color: rgb(135, 170, 225); 
    }
}

.carga-option{
    background-color: rgb(254, 244, 235);
    color: black;
    &:hover{
        background-color: rgb(253, 209, 182);
    }
}

@media(max-width: 1199.98px){
    .container-registro{
        width: 85%;
    }

    .container-botones{
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .contenido-formulario{
        grid-template-columns: 1fr;
    }

    .container-registro{
        width: 90%;
    }

    .titulo-principal{
        margin: 0px 20px;
    }
}
