*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
height:100vh;
background:#f4f5f7;
}

.container{
display:flex;
height:100vh;
}

/* LEFT SIDE */

.login-section{
width:45%;
padding:80px;
background:white;
display:flex;
flex-direction:column;
justify-content:center;
}

.login-section h1{
margin-bottom:30px;
font-size:32px;
}

form label{
font-size:14px;
color:#444;
}

form input{
width:100%;
padding:12px;
margin-top:6px;
margin-bottom:20px;
border:1px solid #ddd;
border-radius:5px;
background:#f3f4f6;
}

.password-note{
font-size:12px;
color:gray;
margin-top:-15px;
margin-bottom:15px;
}

.login-options{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
font-size:13px;
}

.login-options a{
text-decoration:none;
color:#3f51b5;
}

.login-btn{
width:100%;
padding:12px;
border:none;
background:#4c63d2;
color:white;
font-size:16px;
border-radius:4px;
cursor:pointer;
margin-bottom:20px;
}

.social-login{
display:flex;
gap:15px;
margin-bottom:20px;
}

.social-login button{
flex:1;
padding:10px;
border:2px solid #4c63d2;
background:white;
color:#4c63d2;
cursor:pointer;
}

.signup{
font-size:13px;
margin-top:20px;
}

.signup a{
color:#4c63d2;
text-decoration:none;
}


/* RIGHT SIDE IMAGE */

.image-section{
width:55%;
background-image:url("https://scontent.fcgy2-3.fna.fbcdn.net/v/t39.30808-6/541730609_777430911851970_7115166689522524618_n.jpg?stp=cp6_dst-jpg_tt6&_nc_cat=111&ccb=1-7&_nc_sid=e06c5d&_nc_eui2=AeGyakKelZ2VHOGoxdrs-HrSP5ZSvp6jCqc_llK-nqMKp2TuX3keJEWG1Yg4KjLRHPAc_tgMRKaXhF6OcrXOFZIk&_nc_ohc=YVRt19WH_z0Q7kNvwFNdPfH&_nc_oc=Adp66Wpxu3xaiu7iEeEhoiBoknPZLt-stEk8bThImh1S4fjstpIaCYsSTA-ZybAu2ng&_nc_zt=23&_nc_ht=scontent.fcgy2-3.fna&_nc_gid=bGFaQ1O7RE1EBpjyM_bi8Q&_nc_ss=7a3a8&oh=00_Af1xVg63ahX2yJMBMjCmPhM9pcG2iPOj7hFCbuhXbzX0hw&oe=69DA8A12");
background-size:cover;
background-position:center;
}