*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  Times,'Times New Roman', serif;
}
body{
     background-color: aliceblue
}

.login-form{
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    border: 2px solid #e1e1e1;
    background-color: #ffffff;
    height: auto;
    width: 30vw;
    display: flex;
    flex-direction: column;
   align-items: center;
   border-radius: 5px;
   box-shadow: 1px 0px 20px 6px rgb(133 32 168 / 31%);
}
.login-form h2{
    padding:1.2rem 0 0 0;
    font-size: 1.5rem;
    line-height: 28px;
}
.login-form h3{
    font-size: 1rem;
    font-weight: 500;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.login-details{
    height: auto;
    width: 15rem;
    padding-top: 1rem;
   
}
.login-details h5{

padding-top: 1rem;
font-size: 1rem;
font-weight: 500;

}
.login-details input{
    width: 100%;
    margin-top: 0.8rem;
    height: 2rem;
    border: none;
    border-bottom: 2px solid #e1e1e1  ;
    outline: none;
    font-size: 0.9rem;
}
.login-button button{
    margin-top: 1rem;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #fff;
    background-color: #9e48d4;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    width: 15rem;
    box-shadow: 6px 6px 5px 2px rgba(0, 0, 0, 0.2);
}
.login-with{
    display: flex;
    justify-content: space-between;
    width: 15rem;
    padding-bottom: 0.9rem;
    
}
.login-with div{
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center; 
    height: 2rem;
    width: 7.3rem;
    border: 2px solid #e1e1e1;
    border-radius: 5px;
    cursor:pointer;
    box-shadow: 6px 6px 5px 2px rgba(0, 0, 0, 0.2);

}
.login-with div h4{
    font-size: 1rem;
    font-weight: 500;
}
.login-other a{
    color: blue;
    font-size: 16px;
}
.login-other{
    margin-bottom: 2rem;
}
/* start of media query */
@media(max-width:1024px){
 .login-form {
    width: 50%;
    
}

}
@media(max-width: 600px){
    .login-form {
    
    width: 85%;  
}
.login-with div h4{
    font-size: 0.8rem;
}
}