*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Poppins,sans-serif;

background:#f5f7fb;

display:flex;

justify-content:center;

align-items:center;

height:100vh;

}

.auth-container{

width:100%;

padding:20px;

display:flex;

justify-content:center;

}

.auth-card{

background:#fff;

width:100%;

max-width:500px;

padding:40px;

border-radius:20px;

box-shadow:0 10px 35px rgba(0,0,0,.1);

}

.logo-area{

text-align:center;

margin-bottom:25px;

}

.logo-area h2{

color:#0d6efd;

font-weight:700;

}

.form-control{

height:50px;

}

.btn{

height:50px;

border-radius:10px;

font-weight:600;

}

@media(max-width:768px){

.auth-card{

padding:25px;

}

}