/*==================================================
login.css
==================================================*/

body{

margin:0;

background:#0F172A;

font-family:Inter,sans-serif;

}

.login-container{

height:100vh;

display:flex;

justify-content:center;

align-items:center;

}

.login-card{

width:460px;

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.2);

}

.logo{

text-align:center;

margin-bottom:35px;

}

.logo img{

width:246px !important;

height:114px !important;

object-fit:contain !important;

max-width:none !important;

}

.logo h2{

margin-top:15px;

font-size:28px;

font-weight:700;

}

.logo p{

color:#64748B;

}

.form-control{

height:48px;

border-radius:10px;

}

.btn-primary{

height:48px;

border-radius:10px;

background:#2563EB;

border:none;

}

.btn-primary:hover{

background:#1D4ED8;

}