body {
background: url(../images/body-bg.jpg);
background-repeat: no-repeat;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;

}
.login-card {
width:600px;
background: #ffffff;
border-radius: 0 0 8px 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
overflow: hidden;
text-align: center;
}
.btn-login:hover{
       box-shadow: rgba(3, 80, 180, 0.582) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
        transition: 0.3s ease-in;
}
.login-header {
background: #007bff;
color: white;
padding: 20px 0;
font-size: 28px;
font-weight: 600;
box-shadow: rgb(0, 123, 255) 0px 5px 15px;
border-radius: 0px 0px 17px 17px;
text-transform: uppercase;
}
.form-control {
height: 48px;
border-radius: 4px;
font-size: 15px;
}
.btn-login {
height: 48px;
font-size: 18px;
background: #007bff;
border: none;
}
.extra-links {
font-size: 14px;
margin-top: 10px;
}
.extra-links a {
text-decoration: none;
}
.footer-link {
border-top: 1px dashed #b3b3b3;
padding: 15px 0;
font-size: 15px;
}