.login-container 
{
   /* background: linear-gradient(150deg, rgba(255,255,255,1) 10%, rgba(255,173,0,1) 93%); */
    background:whitesmoke;
    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 orange;
    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:red;
    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 black , 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: green;   
  
}

.login-container input
{
    width:70%;
    padding:2px;
}
.login-container .btns button 
{
    padding:10px 20px;
    border:1px solid white;
    color:white;
    background:orange;
    width:120px;
    cursor: pointer;
    border-radius: 5px;
}
.login-container .btns button:hover 
{
    color:orange;
    background:white;
    border:1px solid orange;
}
/* 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;
    }
}