.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(226, 232, 168);
    border-radius: 10px;
    padding: 5px;
    width: 100%;
    min-height: 45px;
    transition: border-color 0.3s;
    padding-right: 30px;
    &: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;
    column-gap: 40px;
    justify-content: space-between;
}

.leyenda-enviar{
    color: rgb(115, 190, 149);
    font-weight: bold;
    text-align: center;
    margin: 0;
    margin-right: 10px;
    font-size: 1.5em;
    line-height: 2.5em;
}

.submit-registro{
    background-color: rgb(159, 197, 130);
    border: none;
    border-radius: 10px;
    height: 40px;
    transition: background-color 0.3s;
    &:hover{
        background-color: rgb(114, 141, 94); 
    }
}

.submit-registro-empresa{
    background-color: #FFCC00;
    border: none;
    border-radius: 10px;
    height: 40px;
    transition: background-color 0.3s;
    &:hover{
        background-color: #dbb001; 
    }
}

.boton-postularse{
    background-color: rgb(255, 203, 0);
    border: none;
    border-radius: 10px;
    height: 40px;
    transition: background-color 0.3s;
    &:hover{
        background-color: rgb(212, 170, 0); 
    }
}

.boton-postularse-centro {
    background-color: #FFCC00;
    border: none;
    border-radius: 10px;
    height: 40px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: black;
    width: 100%;
}

.boton-postularse-centro:hover {
    background-color: rgb(212, 170, 0);
}

.btn-amarillo{
    background-color: rgba(255, 204, 0, 1);
    border: none;
    border-radius: 10px;
    height: 40px;
    transition: background-color 0.3s;
    &:hover{
        background-color: rgb(212, 173, 0);
    }
}

.dark-green{
    background-color: rgb(90, 112, 72);
}

.submit-login{
    background-color: rgb(225, 231, 169);
    border: none;
    border-radius: 10px;
    height: 30px;
    width: 120px;
    transition: background-color 0.3s;
    &:hover{
        background-color: rgb(95, 160, 129); 
    }
}

.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%;
    }

    .submit-registro{
        height: 60px;
    }
}

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

    .container-registro{
        width: 90%;
    }

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

    .container-botones{
        flex-direction: column;
        row-gap: 10px;
        margin-bottom: 10px;
    }
}
