*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Roboto', sans-serif;

}

.login{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:  url(../img/proing.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: aliceblue;
}


.container-form{
    width: 90%;
    height: 90vh;
    display: flex;
    justify-content: space-around;
    transition: all .5s ease-out;
}

.welcome-back{
    display: flex;
    align-items: center;
    text-align: center;
}

.message{
    padding:  1rem;
}

.message h2{
    font-size: 1.7rem;
    padding: 1rem 0;
}

.formulario{
    width: 400px;
    margin: 1rem;
    background-color: rgb(51 51 51 / 83%);
    text-align: center;
}

.create-account{
    padding: 2rem 0;
    font-size: 1.7rem;
}

.iconos{
    width: 200px;
    display: flex;
    justify-content: space-around;
    margin: auto;
    
}

.border-icon{
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: solid thin white;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all .3s ease-in;
}

.border-icon:hover{
    background-color: #4a4aee;
    cursor: pointer;
}

.cuenta-gratis{
    padding: 2rem 0;
}

.formulario input {
    width: 70%;
    display: block;
    margin: auto;
    margin-bottom: 2rem;
    background-color: #f8f9fa;
    border: none;
    border-bottom: white thin solid;
    text-align: center;
    outline: none;
    font-size: 1rem;
    color: black;
}

.formulario select{
    width: 70%;
    display: block;
    margin: auto;
    margin-bottom: 2rem;
    background-color: transparent;
    border: none;
    border-bottom: white thin solid;
    outline: none;
    font-size: 1rem;
    color: white;
}
.formulario select option{
    width: 70%;
    display: block;
    margin: auto;
    margin-bottom: 2rem;
    background-color: transparent;
    border: none;
    border-bottom: white thin solid;
    outline: none;
    font-size: 1rem;
    color: rgb(8, 8, 8);
}

.formulario input[type="button"]{
    width: 60%;
    margin: auto;
    border: solid thin white;
    padding:  .7rem;
    border-radius: 2rem;
    background-color: white;
    font-weight: 600;
    margin-top: 3rem;
    font-size: .8rem;
    cursor: pointer;
    color: #222;

}

.sign-in{
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.sign-in.active{
    opacity: 1;
    visibility: visible;
}

.sign-up.active{
    opacity: 0;
    visibility: hidden;
}

#alert.error{
    display: none;
}

/**********ESTILOS PARA LOGIN2 @MP 4-8-2022*********/
.login2{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:  url(../img/proing.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: aliceblue;
}

.formulario2 input{
    width: 70%;
    display: block;
    margin: 2em auto;
    /*margin-bottom: 2rem;*/
    background-color: transparent;
    border: none;
    border-bottom: white thin solid;
    text-align: center;
    outline: none;
    font-size: 1rem;
    color: white;
}

.formulario2{
    width: 400px;
    margin: 1rem;
    background-color: rgb(51, 51, 51, 0.602);
    text-align: center;
}

.formulario2 input[type="button"]{
    width: 60%;
    margin: auto;
    border: solid thin white;
    padding:  .7rem;
    border-radius: 2rem;
    background-color: white;
    font-weight: 600;
    margin-top: 3rem;
    font-size: .8rem;
    cursor: pointer;
    color: #222;

}

.formulario2 select option{
    width: 70%;
    display: block;
    margin: auto;
    margin-bottom: 2rem;
    background-color: transparent;
    border: none;
    border-bottom: white thin solid;
    outline: none;
    font-size: 1rem;
    color: rgb(8, 8, 8);
}

.formulario2 select{
    width: 70%;
    display: block;
    margin: auto;
    margin-bottom: 2rem;
    background-color: transparent;
    border: none;
    border-bottom: white thin solid;
    outline: none;
    font-size: 1rem;
    color: white;
}

.welcome-back2{
    /*display: flex;*/
    /*align-items: center;**/
    text-align: center;
}