*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:linear-gradient(135deg,#ff5c8a,#ff8fab);
height:100vh;
display:flex;
justify-content:center;
align-items:center;
}

.container{
width:90%;
max-width:1100px;
background:white;
border-radius:25px;
overflow:hidden;
display:flex;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.left{
flex:1;
background:linear-gradient(135deg,#ff4d6d,#ff85a2);
color:white;
padding:60px;
display:flex;
flex-direction:column;
justify-content:center;
}

.left h1{
font-size:42px;
margin-bottom:20px;
}

.left p{
font-size:18px;
line-height:1.7;
}

.right{
flex:1;
padding:60px;
display:flex;
justify-content:center;
align-items:center;
}

.form-box{
width:100%;
max-width:380px;
}

.form-box h2{
font-size:32px;
margin-bottom:30px;
color:#ff4d6d;
}

.input-box{
position:relative;
margin-bottom:20px;
}

.input-box i{
position:absolute;
left:15px;
top:16px;
color:#999;
}

.input-box input{
width:100%;
padding:14px 14px 14px 45px;
border:1px solid #ddd;
border-radius:12px;
font-size:16px;
}

.input-box input:focus{
outline:none;
border-color:#ff4d6d;
}

button{
width:100%;
padding:14px;
border:none;
background:#ff4d6d;
color:white;
font-size:18px;
border-radius:12px;
cursor:pointer;
transition:0.3s;
}

button:hover{
background:#e63956;
}

.bottom-text{
margin-top:20px;
text-align:center;
}

.bottom-text a{
color:#ff4d6d;
text-decoration:none;
font-weight:600;
}

@media(max-width:900px){
.container{
flex-direction:column;
}
.left,.right{
padding:40px;
}
}