.login-container 
{
   /* background: linear-gradient(150deg, rgba(255,255,255,1) 10%, rgba(255,173,0,1) 93%); */
    background:rgba(156, 75, 231, 0.767);
    text-align:center;
    width:500px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:space-between;
    padding:50px 10px;
    box-sizing:border-box;
    border-radius:10px 10px 0 0;
    border:2px solid rgb(254, 120, 198);
    position:relative;
    height:600px;
    
}

.login-container .top 
{
    width:80%;
    display:flex;
    flex-direction:column;
    align-items:center;
}
.login-container img 
{
    width:200px;
    height:150px;
    object-fit:contain;
}
.login-container .error 
{
    background:rgb(44, 217, 244);
    padding:20px ;
    font-size:18px;
    top:200px;
    color:white;
    position:absolute;
    z-index:9;
    display: none;
    transition: 2000ms ease-in-out;
}
.login-container form 
{
    background:var(--blue);
    padding:20px;
    display:flex;
    flex-direction:column;
    width:80%;

    border-radius:20px 0 20px 0;
    box-shadow:2px 2px 5px rgba(0, 0, 0, 0.746) , inset 2px 2px 5px white;
    color: white;
}
.login-container form .fields 
{
    width:100%;
    display:flex;
    gap:5px;
    justify-content:space-between;
   
}
.login-container form .fields
{
    box-sizing:border-box;
}
 #showpass 
{
  position:absolute;
  width:20px;
  right:70px;
  margin-top:2px;
  text-align:center;
  cursor: pointer;
}

#showpass i
{
  color: rgb(255, 33, 81);   
  
}

.login-container input
{
    width:70%;
    padding:2px;
}
.login-container .btns button 
{
    padding:10px 20px;
    border:1px solid rgb(24, 205, 112);
    color:rgb(175, 224, 246);
    background:orange;
    width:120px;
    cursor: pointer;
    border-radius: 5px;
}
.login-container .btns button:hover 
{
    color:rgb(47, 255, 0);
    background:white;
    border:1px solid rgb(242, 166, 25);
}
/* Login Form ends here  */


@media screen and (max-width: 700px) {

    /* Login form starts here */
    .login-container 
    {
        width:100%;
        left:0;
    }
    .login-container .fields
    {
        flex-direction:column;
        align-items:flex-start;
        font-size:18px;
    }
    .login-container .fields input
    {
        width:100%;
        font-size:20px;
        padding:2px;
    }
    .login-container .top img 
    {
        width: 120px;
        height: 50px;
    }
    .login-container .top .error 
    {
        top:120px;
    }
}