* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#section {
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-info {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#section-login {
    width: 80%;
    height: 70%;
    border-radius: 20px;
    box-shadow: 0px 0px 150px rgba(208, 19, 19, 0.977);
    display: flex;
    justify-content: center;
    align-items: center;
}

#section-login-uno {
    width: 40%;
    height: 100%;
    background-image: url("/img/fondoPantalla.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

#section-login-dos {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#section-form,
#section-titulo,
#section-btn {
    padding: 20px 0px;
    display: flex;
    justify-content: center;
}

#section-titulo p {
    font-size: 40px;
}

#section-form form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.cajas {
    width: 250px;
    text-decoration: none;
    background: transparent;
    padding: 10px 0px;
    border: none;
    border-bottom: 2px solid rgba(208, 19, 19, 0.977);
    margin: 15px 0px;
    outline: none;
}

#btn-login {
    padding: 10px 20px 10px 20px;
    border-radius: 50px;
    background-color: rgba(208, 19, 19, 0.977);
    border-color: white;
    cursor: pointer;
    color: white;
}

#btn-login:hover {
    padding: 10px 20px 10px 20px;
    border-radius: 50px solid rgba(208, 19, 19, 0.977);
    background-color: rgba(255, 255, 255, 0.8);
    border-color: rgba(208, 19, 19, 0.977);
    cursor: pointer;
    color: rgba(208, 19, 19, 0.977);
    transition: 0.5s;
}

.cajas-texto {
    display: flex;
    flex-direction: column;
}

.msj-error {
    color: rgba(208, 19, 19, 0.977);
    font-size: small;
}
