@import url(generales.css);

.cont-login {
    background-color: var(--back);
}

.identity {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
}
.identity img {
    max-width: 212px;
}

.cont-login {
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
}
.cont-login article {
    margin: 0 auto;
}
.cont-login h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--blue-primary);
}
.cont-login p {
    font-size: 18px;
    font-weight: 400;
}
.animate-login {
    position: relative;
    width: 100%;
}
.animate-back {
    width: 70%;
}
.animate-human {
    position: absolute;
    bottom: 0;
    max-width: 260px;
    left: 50%;
    transform: translateX(-50%);
}
.cont-form {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
} 
.cont-form form{
    max-width: 340px;
    border: 1px solid #EEE;
    padding:35px 20px;
    height: auto;
}
.cont-form h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 25px;
}
.cont-form label {
    width: 100%;
    margin-bottom: 20px;
}
.cont-form label span {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 5px;
}
.cont-form label.user-form input {
    background-color: #F7F8F9;
    width: 100%;
}
.cont-form .alert {
    width: 100%;
    font-size: 14px;
    max-width: 340px;
}
.cont-form .alert span {
    margin-right: 5px;
    vertical-align: middle;
}
.alert-danger {
    display: none;
    transition: .5s;
}
.gap-2 button i,
.gap-2 button span {
    font-size: 18px;
    vertical-align: middle;
}
.gap-2 .spinner-border {
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    margin: 0 auto;
    display: none;
}
.gap-2 button i {
    display: none;
}
.idMovil {
    display: none;
}
@media (max-width: 900px){
    .idMovil {
        display: block;
        position: fixed;
        width: 100vw;
        height: 100vh;
        background: #EEE;
        z-index: 9999;
        top: 0;
        left: 0;
    }
}