body{
font-family:'Poppins', sans-serif;
margin:0;
height:100vh;
display:flex;
}

.login-left{
width:55%;
background-image:url('../images/barber.jpeg');
background-size:cover;
background-position:center;
}

.login-right{
width:45%;
display:flex;
align-items:center;
justify-content:center;
background:#f4f6f9;
}

.login-card{
width:380px;
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.login-card h3{
margin-bottom:25px;
}

.form-control{
height:45px;
}

.btn-login{
background:#111827;
color:white;
width:100%;
height:45px;
border-radius:8px;
}

.btn-login:hover{
background:#1f2937;
}