:root{
    --colorNegro: #313131;
    --colorRojo:#e01d44;
    --colorAzul:#20a4cc ;
    --colorBody:#f7f7f7;
    --colorP:#585858;
}
.body{
    background-color: #f7f7f7;
}
main{
    margin-top: 7rem;
} 

.contenedor-footer{
    margin-top:0rem;
}

.login-background-contenedor{
    
    /* background: linear-gradient(45deg, rgba(19,97,121,1) 0%, rgba(198,34,67,1) 100%);
    background-size:300% ; */
    width: 100%;
    background: #f7f7f7;
    position: relative;
    height: 100vh;
    
}

.login-contenedor-frame{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(45deg, rgba(19,97,121,1) 0%, rgba(198,34,67,1) 100%);
    background-size:300% ;
    width: 100%;
    height: 100vh;
    -webkit-clip-path: circle(50% at 15% 60%);
    clip-path: circle(40.0% at 15% 51%);
    animation: background-animate-login 10s ease infinite;
}

@keyframes background-animate-login{
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}
.login-form{
    margin-top: 5%;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    right: 0;
    top:2%;
    width: 45%;
    background: linear-gradient(145deg, #ffffff, #dedede);
    box-shadow:  5px 5px 5px #cfcfcf,
             -5px -5px 5px #ffffff;
    border-radius: 1rem;
    margin-right: 4%;
}

.login{
    display: flex;
    flex-direction: column;
    align-items: center;

}

.login img{
    width: 20%;
}

.login h2{
    color:var(--colorAzul);
    font-size: 30px;
    font-weight: 700;
    margin-top: -1rem;
}

.login-email{

    width: 50%;
    margin-top: 1rem;
    height: 40px;
    border-style: none;
    border-radius: 0.5rem;
    background: #f7f7f7;
    box-shadow: inset 5px 5px 5px #cfcfcf,inset -5px -5px 5px #ffffff;
    

}

.login-password{
    width: 50%;
    margin-top: 1rem;
    height: 40px;
    border-style: none;
    border-radius: 0.5rem;
    background: #f7f7f7;
    box-shadow: inset 5px 5px 5px #cfcfcf,inset -5px -5px 5px #ffffff;
    
    
}
.login input:focus{
    border: none;
    border-style: none;
    outline: none;
    
    
}
.login input:focus::placeholder{
    color: transparent;
    background-image: none;
    transition: all 0.3s ease-in-out;
    
}
.login-email::placeholder{
    background-image: url(../img/iconos-variedad/user.svg);
    background-size: 25px 25px;
    background-repeat: no-repeat;
    background-position: 2%;
    top: 0;
    left: 0;
    padding-left: 32px;

}
.login-password::placeholder{
    background-image: url(../img/iconos-variedad/lock.svg);
    background-size: 25px 25px;
    background-repeat: no-repeat;
    background-position: 2%;
    top: 0;
    left: 0;
    padding-left: 30px;

}


.login-submit{
    text-align: center;
   width: 30%;
   height: 40px;
   margin-top:1rem;
   border-radius: 1rem;
   color:white;
   text-decoration: none;
   font-size: 20px;
   font-weight: 700;
   border-style:none;
    background: linear-gradient(145deg, #26C1F0, #1A87A8);
    box-shadow: 1.8px 1.8px 7px #156A84, -1.8px -1.8px 7px #2BDEFF;
    transition: all 1s ease-in-out;
}

.login-submit:hover{
    cursor:pointer;
    transform: scale(1.06);
}

.login-footer{
    margin-top: 3%;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    align-items: center;

}

.login-footer a{
    text-decoration: none;
    color: var(--colorP);
    margin-right: 10px;
    margin-left: 10px;
}

.login-contenedor-frame img{
    width: 30%;
    top:-2%;
    margin-left: 10%;
    z-index: 1;
    animation: soluciones-animate ease-in 2s infinite alternate;
}
@keyframes soluciones-animate{
    0%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(5px);
    }

}

@media (max-width:1024px){
    .login-background-contenedor{
        display:flex;
        flex-direction: column-reverse;
        align-items: center;
        height:auto;
        width: 100%;
        

    }
    .login-contenedor-frame{
        
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 300px;
        -webkit-clip-path: circle(50% at 50% 50%);
        clip-path: ellipse(43% 63% at 52% 25%);
        margin-bottom: -10%;
        
    }

    .login-contenedor-frame img{
        width:40%;
        margin-left: 32%;
        height: 100%;
    }

    .login-form{
        margin-top: 5%;
        position: inherit;
        display: flex;
        flex-direction: column;
        align-items: center;
        right: 0;
        top:-3%;
        width: 95%;
        margin-left:0%;
        margin-right: 0;
        margin-bottom: 10%;
    }
    .login-email::placeholder{
        padding-left: 30px;
    }
    .login-password::placeholder{
        padding-left: 30px;
    }
}