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

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image:url("ens.png") ;
    background-size: cover;   /* Cover the entire page */
    background-position: center;  /* Center the image */
    background-repeat: no-repeat; /* Prevent tiling */
    background-attachment: fixed; /* Optional: Fixes the image while scrolling */
    /* Dark overlay for better text contrast */
    position: relative;
    backdrop-filter: blur(4px); 
    
}

.login-box{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 440px;
    height: 480px;
    padding: 30px;
    background: white;
  border-radius: 16px; /* Smoother rounded corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft depth effect */
  
  gap: 20px; /* Consistent spacing between child elements */
  border: 1px solid rgba(0, 0, 0, 0.05); /* Subtle border */

}
.login-header{
    text-align:center ;
    margin-top: 40px; /* Increase the space above */
    margin-bottom: 20px; 
}
.login-header header{
    color: #333;
    font-size: 30px;
    font-weight: 600;
}
.input-box .input-field{
    width: 100%;
    height: 60px;
    font-size:17px;
    padding:0 25px;
    margin-bottom: 15px;
    border-radius:30px;
    border:none;
    box-shadow: 0px 5px 10px 1px rgba(0,0,0,0.05);
   outline: none;
   transition:.3s;
}
::placeholder{
    font-weight: 500;
    color: #222;
}
.input-field:focus{
    width: 105%;
}
.forgot{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
section{
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
}
#check{
    margin-right: 10px;
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}
section a{
    color: #555;
}
.input-submit{
    position: relative;
}
.submit-btn{
    width: 100%;
    height: 60px;
    background: #222;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s;
    background-color:antiquewhite;
}
.input-submit label{
    position: absolute;
    top: 45%;
    left: 50%;
    color: #fff;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.submit-btn:hover{
    background:cornflowerblue;
    transform: scale(1.05,1);
}
.sign-up-link{
    text-align: center;
    font-size: 15px;
    margin-top: 20px;
}
.sign-up-link a{
    color: #000;
    font-weight: 600;
}
