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

body{
background:#f4f4f4;
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:30px;
}

.container{
width:100%;
max-width:1400px;
min-height:850px;
background:#fff;
border-radius:30px;
overflow:hidden;
display:grid;
grid-template-columns:40% 60%;
box-shadow:0 15px 50px rgba(0,0,0,0.12);
}

/* LEFT PANEL */

.left-panel{
background:linear-gradient(180deg,#14003B,#22005f);
padding:60px;
color:white;
display:flex;
flex-direction:column;
justify-content:center;
align-items:flex-start;
position:relative;
overflow:hidden;
}

.logo{
width:170px;
margin-bottom:35px;
}

.left-panel h1{
font-size:58px;
line-height:1.15;
font-weight:800;
margin-bottom:25px;
}

.left-panel span{
color:#FFB100;
}

.left-panel p{
font-size:18px;
line-height:1.8;
color:#ddd;
margin-bottom:45px;
max-width:420px;
}

.features{
display:flex;
flex-direction:column;
gap:22px;
}

.features div{
display:flex;
align-items:center;
gap:18px;
font-size:18px;
font-weight:500;
}

.features i{
min-width:58px;
height:58px;
border-radius:50%;
background:#FFB100;
color:#14003B;
display:flex;
justify-content:center;
align-items:center;
font-size:22px;
}

/* RIGHT PANEL */

.right-panel{
padding:70px;
display:flex;
justify-content:center;
align-items:center;
background:#fff;
}

.form-box{
width:100%;
max-width:720px;
}

.form-box h2{
font-size:48px;
font-weight:800;
color:#14003B;
margin-bottom:10px;
}

.subtext{
color:#777;
font-size:16px;
margin-bottom:25px;
}

.message{
color:red;
margin-bottom:18px;
font-weight:600;
}

.grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:22px;
}

.input-box{
height:68px;
border:2px solid #ececec;
border-radius:18px;
display:flex;
align-items:center;
padding:0 22px;
margin-bottom:22px;
background:#fff;
}

.input-box i{
margin-right:16px;
color:#14003B;
font-size:18px;
}

.input-box input{
width:100%;
border:none;
outline:none;
font-size:16px;
background:none;
}

.password-box{
position:relative;
}

.password-box .toggle-password{
position:absolute;
right:20px;
top:50%;
transform:translateY(-50%);
cursor:pointer;
color:#666;
font-size:18px;
margin-right:0;
}

.password-box input{
padding-right:50px;
}

.main-btn{
width:100%;
height:68px;
border:none;
border-radius:18px;
background:linear-gradient(135deg,#3D00A8,#6B1EFF);
color:white;
font-size:20px;
font-weight:700;
cursor:pointer;
margin-top:10px;
}

/* SUCCESS */

.success-box{
text-align:center;
padding:50px;
}

.success-box i{
font-size:90px;
color:#5A00E0;
margin-bottom:25px;
}

.success-box h2{
font-size:42px;
margin-bottom:20px;
}

.success-box p{
font-size:18px;
line-height:1.8;
color:#555;
margin-bottom:35px;
}

.home-btn{
display:inline-block;
padding:16px 45px;
background:#F8AE46;
color:#14003B;
font-weight:700;
border-radius:50px;
text-decoration:none;
font-size:18px;
}

@media(max-width:1100px){

.container{
grid-template-columns:1fr;
}

.left-panel{
display:none;
}

.grid{
grid-template-columns:1fr;
}

}