@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');


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

body *{
    box-sizing: border-box;
}

.main-login{
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-login{
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.right-login{
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-login{
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 35px;
    background: #3B3B3B;
    border-radius: 20px;
    box-shadow: 0px 10px 40px #00000056;
}

.form-login > h1 {
    color: #ffffff;
    font-weight: 800;
}

.text-field{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0px;
}

.text-field > input{
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #ffffff;
    font-size: 12pt;
    box-shadow: 0px 10px 40px #00000056;
    outline: none;
    box-sizing: border-box;
}

.text-field > label{
    color: #ffffffff;
    margin-bottom:10px;
}

.text-field > input::placeholder{
    color: #00000000;
}

.btn-login{
    width: 100%;
    padding: 16px 0px;
    margin: 25px;
    border: none;
    border-radius: 8px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    color:#ffffffff;
    background:#E10913;
    cursor: pointer;
    box-shadow: 0px 10px 40px -12px #313030;
}

.left-login-image{
    width: 30vw;
}


.tiposlogin{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.glogin {
    background-image: url("giconlighnormal.svg");
    background-color: #ffffff;
    border: none;
    font-family: 'Roboto', sans-serif;
    background-repeat: no-repeat;
    background-size: contain; 
    background-position: left; 
    text-align: center; 
    line-height: 40px; 
    padding-left: 40px; 
    padding-right: 10px; 
  }



@media only screen and (max-width:950px){
    .card-login{
        width: 85%;
    }
}

@media only screen and (max-width: 600px) {
    .main-login{
        flex-direction:column;
    }
    .left-login > h1 {
        display: none;
    }
    .left-login{
        justify-content: start;
        width: 100%;
        height: 30vh;
    }
    .right-login{
        width: 100%;
        height: auto;
    }
    .left-login-image{
        width: 40vw;
    }
    .card-login{
        width: 100%;
    }
    .form-login{
        width: 90vw;
    }

}

