
body{
    /*height: 100%;
    width: 100%;*/
    padding: 0;
    margin: 0;
}
h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}
.blue-badge{
    background-color:#3784DE;
    height: 10vh;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.logo-and-title{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    height: 30vh;
}
.logo-and-title img{
    height: 40%;
}
.inputs-zone{
    height: 35vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.custom-input{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    background-color: #3784DE;
    color: white;
    width: 90vw;
}
.custom-input input{
    width: 100%;
    height: 8vh;
    outline: none;
    border: none;
    border-bottom: 1px solid gray;
}
.custom-input input:focus{
    border-bottom: 2px solid #3784DE;
}
.icon-separator{
    height: 100%;
    width: 10%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
footer.login-footer{
    height: 25vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.button-and-a{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100vw;
    height: 100%;
}
.forget-text{
    color: gray;
    font-weight: bold;
    margin-bottom: 20px;
}
button.login-button{
    background-color: #3784DE;
    height: 8vh;
    width: 60vw;
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    color: white;
    font-size: 16px;
}
button.login-button:hover{
    background-color: #de3737;
}

/*NUEVO*/

.login-body{
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    margin: 0px;
    padding: 0px 1rem;
    background-color: var(--main-blue);
    justify-content: center;
    align-items: center;
}

.login-content{
    padding: 2rem;
    border-radius: 5px;
    background-color: white;
    width: 40%;
    min-width: 450px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    row-gap: 2rem;
}

.login-content > .title-bar{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
}
.login-content > .login-form{
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.login-form > .input-wrapper{
    display: grid;
    grid-template-columns: 1fr auto;
}

.login-form > .input-wrapper > label{
    grid-column-end: span 2;
}

.login-form > .input-wrapper > .input-icon{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: #3784DE;
    color: white;
    align-self: stretch;
    padding: 1rem;
}

.login-form > .buttons-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    column-gap: 1rem;
}

.login-form > .input-wrapper > input[type='text'],
.login-form > .input-wrapper > input[type='password']{
    padding: 1rem;
    /*border-radius: 5px;*/
    border: none;
    border-bottom: solid 2px #0005;
    outline: none;
    font-size: 1.125rem;
    transition: 200ms;
    min-width: 0px;
}

.login-form > .input-wrapper > input[type='text']:focus,
.login-form > .input-wrapper > input[type='password']:focus{
    border-color: #3784DE;
    border-width: 2px;
}

.login-form > .input-wrapper > input[type='text']:focus::placeholder,
.login-form > .input-wrapper > input[type='password']:focus::placeholder{
    color: #3784DE;
}

.login-form > .input-wrapper > select{
    padding: 1rem;
    /*border-radius: 5px;*/
    border: none;
    border-bottom: solid 2px #0005;
    outline: none;
    font-size: 1.125rem;
    transition: 200ms;
    min-width: 0px;
    background-color: transparent;
}

@media only screen and (max-width: 600px) {
    .login-content{
        border-radius: unset;
        align-self: stretch;
        flex-grow: 1;
        width: unset;
        min-width: unset;
        justify-content: center;
    }
    .login-body{
        justify-content: stretch;
        padding: 0px;
    }
    .login-content > .title-bar{
        margin-bottom: 2rem;
    }
}