*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:linear-gradient(135deg,#dbeafe,#f8fbff);
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
padding:22px;
}

.container{
width:90%;
display:flex;
border-radius:20px;
overflow:hidden;
background:#fff;
box-shadow:0 20px 60px rgba(0,0,0,.15);
margin-top: 4%;
}

.left{
width:50%;
background:linear-gradient(rgba(0,40,120,.75),rgba(0,20,80,.9)),url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1200");
background-size:cover;
background-position:center;
padding:60px;
color:#fff;
}

.left h1{
font-size:48px;
margin-bottom:20px;
}

.left p{
font-size:17px;
line-height:30px;
margin-bottom:30px;
}

.left ul{
list-style:none;
}

.left ul li{
margin:15px 0;
font-size:18px;
}

.right{
width:50%;
padding:50px;
}

.right h2{
font-size:40px;
color:#1d4ed8;
margin-bottom:10px;
}

.right p{
color:#666;
margin-bottom:30px;
}

.error{
    background:#ffeaea;
    color:red;
    padding:12px;
    border-radius:8px;
    margin-bottom:15px;
    text-align:center;
}

.input-group{
    margin-bottom:15px;
}

.input-group label{
    display:block;
    margin-bottom:6px;
    font-weight:600;
    color:#444;
}

.input-group input{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:15px;
}

.input-group input:focus{
    border-color:#007bff;
}
.password-box{
    position: relative;
}

.password-box input{
    width: 100%;
    padding: 12px 50px 12px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.password-box input:focus{
    border-color:#007bff;
}
input[type="password"]::-ms-reveal {
    display: none;
}

input[type="password"]::-ms-clear {
    display: none;
}

.toggle-password{
    position:absolute;
    top:50%;
    right:12px;
    transform:translateY(-50%);
    border:none;
    background:none;
    cursor:pointer;
    font-size:20px;
    width:auto;
    padding:0;
}


button{
width:100%;
padding:16px;
background:#2563eb;
color:#fff;
border:none;
border-radius:10px;
font-size:18px;
cursor:pointer;
}

button:hover{
background:#1d4ed8;
}

.login{
margin-top:20px;
text-align:center;
}

.login a{
text-decoration:none;
color:#2563eb;
font-weight:600;
}

@media(max-width:900px){
body{
        padding:5px;
    }
.container{
width: 100%;
margin-top: 13%;
flex-direction:column;
}

.left,
.right{
width:100%;
}

.left{
padding:40px;
}

}