#img-index {
    height: 50px;
}

#body_login{
    height: 100vh;
    margin: 0;
	display: flex;
	align-items: center;
    row-gap: 5rem;
}

#login{
    width: 55%;
    height: 55%;
    display: flex;
    background-color: whitesmoke;
    border-radius: 10px;
    align-items: center;
}

#login_izquierda{
    width: 45%;
    height: 100%;
	border-radius: 10px 0px 0px 10px;
    background-size: cover;
	background-position: center center;
}

#login_derecha{
    margin: 1rem;
    width: 55%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

#icono_usuario{
    position: relative;
    margin: 0 auto;
    width: 30%;
	margin-bottom: 2rem;
}

#frmLogin{
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
}

.input-group{
    width: 70%;
    margin: 0.6rem 0;
    background-color: white;
    border-radius: 5px !important;
    height: 2.7rem;
}

.input-group-prepend{
    background-color: white;
    padding: 0.375rem 0.75rem;
}

.form-control{
    width: 60%;
    margin: 0 auto 1rem auto; 
    border: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-family: 'Rubik', sans-serif;
}

.form-control:focus{
    box-shadow: none;
}

.input-group-text{
    background-color: white;
    border: none;
}

#login_button{
    display: flex;
    margin: 0.8rem auto;
    width: 70%;
    height: 2rem;
    outline: none;
    border: whitesmoke 1px solid;
    border-radius: 5px;
    background-color: var(--main-color-1);
    color: white;
    font-weight: bold;
    font-family: 'Rubik', sans-serif;
    cursor: pointer;
    transition: 0.3s;
    justify-content: center;
    align-items: center;
}

#login_button:hover{
    border: var(--main-color-1) 1px solid;
    background-color: whitesmoke;
    color: var(--color-interfaz);
}

.p-link{
    text-align: center;
    cursor: pointer;
    color: var(--text-color);
	font-family: 'Rubik', sans-serif;
    font-weight: bold;
}

.campoFormularioError {
    border: 2px solid #cf4636 !important;
}
