*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{

background:#f3f7fb;

display:flex;

justify-content:center;

align-items:center;

height:100vh;

}

.container{

width:100%;

display:flex;

justify-content:center;

}

.card{

width:400px;

background:white;

padding:40px;

border-radius:15px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.card h1{

text-align:center;

color:#0d6efd;

margin-bottom:8px;

}

.subtitle{

text-align:center;

margin-bottom:35px;

color:#666;

}

.input-group{

margin-bottom:20px;

}

.input-group label{

display:block;

margin-bottom:8px;

font-weight:bold;

}

.input-group input{

width:100%;

padding:14px;

border:1px solid #ddd;

border-radius:10px;

font-size:15px;

outline:none;

transition:.3s;

}

.input-group input:focus{

border-color:#0d6efd;

box-shadow:0 0 5px rgba(13,110,253,.3);

}

.btn-login{

width:100%;

padding:14px;

border:none;

background:#0d6efd;

color:white;

font-size:16px;

font-weight:bold;

border-radius:10px;

cursor:pointer;

transition:.3s;

}

.btn-login:hover{

background:#0b5ed7;

}

.bottom-text{

margin-top:25px;

text-align:center;

}

.bottom-text a{

text-decoration:none;

color:#0d6efd;

font-weight:bold;

}

select{

width:100%;

padding:14px;

border-radius:10px;

border:1px solid #ddd;

font-size:15px;

outline:none;

}
