 body {
   font-family: 'Inter', sans-serif;
   background: #f6f7fb;
   height: 100vh;
 }

 .login-wrapper {
   min-height: 100vh;
 }

 .login-card {
   background: #fff;
   padding: 60px;
 }

 .btn-login {
   background: #3f51b5;
   color: #fff;
   border-radius: 30px;
   padding: 12px;
 }

 .btn-login:hover {
   background: #3546a5;
 }

 .divider {
   position: relative;
   text-align: center;
   margin: 30px 0;
 }

 .divider::before {
   content: '';
   position: absolute;
   top: 50%;
   left: 0;
   right: 0;
   height: 1px;
   background: #ddd;
   z-index: 0;
 }

 .divider span {
   background: #fff;
   padding: 0 10px;
   position: relative;
   z-index: 1;
   color: #999;
 }

 .login-image img {
   object-fit: cover;
   height: 100%;
   width: 100%;
 }