*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:linear-gradient(135deg,#dfe9ff,#f4f8ff);
padding:22px;
}

.login-box{
width:90%;
display:flex;
border-radius:8px;
overflow:hidden;
background:#fff;
box-shadow:0 25px 60px rgba(0,0,0,.15);
margin-top: 4%;
}

/* Left Side */

.left{
width:58%;
padding:60px;
position:relative;
color:#fff;

background:
linear-gradient(rgba(0,30,90,.75),rgba(0,20,60,.92)),
url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1200");

background-size:cover;
background-position:center;
}

.logo-img{
font-size:38px;
font-weight:700;
margin-bottom:50px;
}

.logo-img span{
color:#55b8ff;
}

.left h1{
font-size:55px;
line-height:65px;
margin-bottom:25px;
}

.left h1 span{
color:#42b6ff;
}

.left p{
font-size:18px;
line-height:30px;
max-width:480px;
margin-bottom:35px;
}

.left ul{
list-style:none;
}

.left ul li{
margin:15px 0;
font-size:18px;
}

.bottom-card{

margin-top:50px;

display:inline-flex;

align-items:center;

gap:15px;

padding:20px;

background:rgba(255,255,255,.12);

border-radius:18px;

backdrop-filter:blur(10px);

}

.circle{

width:60px;

height:60px;

border-radius:50%;

background:#3b82f6;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

}

/* Right Side */

.right{
width:42%;
padding:10px 55px;
}

.right h2{
font-size:45px;
color:#1e3a8a;
margin-bottom:0px;
}

.subtitle{
color:#666;
margin-bottom:35px;
text-align: center;
}

.tabs{
margin-top: -20px;
display:flex;
background:#eef3ff;
padding:6px;
border-radius:12px;
margin-bottom:px;
}

.tabs button{
flex:1;
border:none;
padding:10px;
border-radius:10px;
cursor:pointer;
font-size:16px;
font-weight:600;
}

.tabs .active{
background:#2563eb;
color:#fff;
}

.tabs .normal{
background:transparent;
color:#555;
}

.errora{
    border-radius:6px;
    margin-bottom:10px;
    text-align:center;
    height: 30px;
}
.error{
    background:#fee2e2;
    color:#991b1b;
    padding:8px;
    border-radius:6px;
    margin-bottom:10px;
    text-align:center;
}


.input-group{
    margin-bottom:18px;
}

.input-group label{
    display:block;
    margin-bottom:6px;
    font-weight:600;
}

.input-group input{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
}

.input-group input:focus{
    outline:none;
    border-color:#4f46e5;
}

.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;
}

.row{
display:flex;
justify-content:space-between;
margin:20px 0;
font-size:15px;
}

.row a{
text-decoration:none;
color:#2563eb;
}

.login-btn{
width:100%;
margin-top: -10px;
padding:15px;
background:#2563eb;
color:#fff;
border:none;
border-radius:12px;
font-size:18px;
cursor:pointer;
transition:.3s;
}

.login-btn:hover{
background:#1d4ed8;
}

.social{
display:flex;
gap:15px;
margin-top:35px;
}

.social button{
flex:1;
padding:14px;
background:#fff;
border:1px solid #ddd;
border-radius:12px;
cursor:pointer;
font-size:18px;
}

.register{
margin-top:10px;
text-align:center;
}

.register a{
color:#2563eb;
text-decoration:none;
font-weight:600;
}

@media(max-width:950px){

.login-box{
flex-direction:column;
}

.left,
.right{
width:100%;
}

.left{
padding:40px;
}

.left h1{
font-size:38px;
line-height:48px;
}

.right{
padding:35px;
}

}
@media(max-width:500px){
    body{
        padding:5px;
    }
    .login-box{
        width: 100%;
    }
    .right h2{
        font-size:25px;
        color:#1e3a8a;
        margin-bottom:10px;
}
}
