*{
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

body{
    height: 100%;
    background-color: rgba(138, 138, 138, 0.472);
}

.contenedor{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contenedor-lg{
    display: flex;
    width: 700px;
    height: auto;
    *background-color: transparent;
}

.login{
    width: 400px;
    height: 500px;
    background-color: white;
    color: black;
    box-sizing: border-box;
    padding: 30px 40px;
    border-radius: 10px;
    animation-name: borde;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes borde {
    0%{
        border-radius: 0%;
    }
    100%{
        border-top-left-radius: 20%;
        border-bottom-left-radius: 20%;
    }
}

.persona01{
    position: absolute;
    top: 170px;
    left: 720px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.login .titulo{
    margin: 0;
    padding: 0;
    font-weight: bold;
    text-align: center;
    padding: 0 0 30px 0;
    margin-top: 15px;
    display: block;
}

.login h2{
    margin: 0;
    padding: 0;
    font-weight: unset;
    display: block;
}

.login input{
    width: 100%;
    height: 50px;
    margin: 10px 0;
    border: none;
    border-color: transparent;
    color: black;
    border-bottom: black 2px solid;
    font-size: 16px;
}

.login button{
    width: 100%;
    height: 40px;
    margin: 10px 0;
    border: none;
    outline: none;
    color: black;
    background-color: rgb(33,182,219);
    font-size: 16px;
    border-radius: 25px;
}

.login button a{
    color: white;
    text-decoration: none;
}

.login .acceso:hover{
    background-color: rgba(33, 182, 219, 0.5);
    text-decoration: underline;
    cursor: pointer;
}

.login a{
    display: block;
    text-decoration: none;
    font-size: 16px;
    color: darkgray;
    margin: 5px 0 0 0;
}

.login a:hover{
    color: black;
}

.login-nt{
    width: 400px;
    height: 500px;
    color: white;  
    background-color: black;
    box-sizing: border-box;
    padding: 30px 40px;
    border-radius: 10px;
    animation-name: borderBlack;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes borderBlack {
    0%{
        border-radius: 0%;
    }
    100%{
        border-top-right-radius: 20%;
        border-bottom-right-radius: 20%;
    }
}

.persona02{
    position: absolute;
    top: 170px;
    left: 1050px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.login-nt .titulo{
    margin: 0;
    padding: 0;
    font-weight: bold;
    text-align: center;
    padding-bottom: 30px;
    margin-top: 15px;
}

.login-nt button{
    width: 100%;
    margin: 20px 0;
    position: relative;
    border-radius: 10px;
    border-style: none;
    padding: 10px;
    color: white;
    font-size: 18px;
}

.login-nt button i{
    position: absolute;
    top: 10px;
    left: 20px;
}

.login-nt .email{
    background-color: #db4a39;
}

.login-nt .facebook{
    background-color: #3b5999;

}

.login-nt .twitter{
    background-color: #00acee;
}

.login-nt .instagram{
    background-image: linear-gradient(to bottom right,#515BD4,#8134AF,#DD2A7B,#FEDA77,#F58529);
}

.login-nt .email:hover{
    background-color:  rgb(219, 74, 57, 0.8);
    cursor: pointer;
    text-decoration: underline;
}

.login-nt .facebook:hover{
    background-color:  rgb(59,89,153, 0.8);
    cursor: pointer;
    text-decoration: underline;
}

.login-nt .twitter:hover{
    background-color:  rgb(0,172,238, 0.8);
    cursor: pointer;
    text-decoration: underline;
}

.login-nt .instagram:hover{
    background-image: linear-gradient(to bottom right,rgb(81,91,212,0.8),rgb(129,52,175,0.8),rgb(221,42,123,0.8),rgb(254,218,119,0.8),rgb(254,133,41,0.8));
    cursor: pointer;
    text-decoration: underline;
}

