@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;700&display=swap');
body {
    margin: 0;
    font-family: 'Raleway',Georgia, 'Times New Roman', Times, serif;
}
body *{
    box-sizing: border-box;
}
.main-login{
    width: 100vw;
    height: 100vh;
    background: #153c80;
    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;
}
.left-login > h1 {
    font-size: 3vw;
    color: rgb(173, 187, 248);
}
.gif-login{
    width: 30vw;
}
.right-login {
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-login > h1 {
    color:  rgb(173, 187, 248);
    font-weight: 800;
    margin: 0;
}
.card-login {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 35px 30px;
    background:rgb(11, 31, 84);
    border-radius: 20px;
    box-shadow: 0px 10px 40px rgb(27, 28, 51);
}
.textfield{
    margin: 15px 0px;
    width: 100%;
    display: flex;
    flex-direction:  column; 
    align-items: flex-start;
    justify-content: center;
}
.textfield >input{
    width: 100%;
    border: none;
    border-radius: 5px;
    background: rgb(22, 68, 194);
    color: rgb(244, 244, 248);
    font-size: 15;
    padding: 10px;
    outline: none;
    box-shadow: 0px 10px 40px rgb(27, 28, 51);
    box-sizing: border-box;
}
.textfield >label{
    color: white;
    margin-bottom: 10px;
}
.textfield >input::placeholder{
color: white;
}
.button-login{
    width: 100%;
    padding: 16px 0px;
    margin: 25px;
    border: none;
    border-radius: 10px;
    background: rgb(22, 68, 194);
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: large;
    cursor: pointer;
    box-shadow: 0px 10px 40px rgb(27, 28, 51);
}
@media only screen and (max-width:600px){
    .main-login{
        flex-direction: column;
    }
    .left-login{
        width: 100%;
        height: auto;
    }
    .left-login>h1{
        font-size: large;
    }
    .right-login{
        width: 100%;
        height: auto;
    }
    .gif-login{
        width: 50vw;
    }
    .card-login{
        width: 90%;
    }
}