 body {
     font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
     background-color: #f8fafc;
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 100vh;
 }

 .login-container {
     display: flex;
     width: 100%;
     max-width: 950px;
     background: #fff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
 }

 /* Left Side: Logo + Welcome Text */
 .login-image {
     flex: 1;
     /* background: linear-gradient(135deg, #4e73df, #224abe); */
     background: white;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: 2rem;
     color: #fff;
     text-align: center;
     border-radius: 0 12px 12px 0;
     min-height: 300px;
 }

 .login-image img {
     width: 160px;
     height: auto;
     border-radius: 12px;
     margin-bottom: 1rem;
     background: #fff;
     padding: 8px;
 }



 .login-slogan {
     font-weight: 600;
     font-size: 1.3rem;
     letter-spacing: 0.5px;
     line-height: 1.4;
     color: #ffffff;
     text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
 }



 .login-form {
     flex: 1;
     padding: 3rem 2.5rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .login-logo {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 8px;
     margin-bottom: 2rem;
     min-height: 100px;
     text-align: center;
 }

 .login-logo img {
     width: 80px;
     height: 80px;
     object-fit: contain;
     border-radius: 8px;
 }

 .login-logo span {
     font-size: 1.2rem;
     font-weight: 600;
     color: #4e73df;
     display: block;
 }


 .form-control {
     border-radius: 8px;
     padding: 0.75rem 1rem;
     font-size: 0.95rem;
 }

 .input-group-text {
     cursor: pointer;
     background: transparent;
     border-left: none;
 }

 .btn-login {
     background: #4e73df;
     border: none;
     border-radius: 8px;
     padding: 0.75rem;
     font-weight: 600;
     color: #fff;
     transition: all 0.2s;
 }

 .btn-login:hover {
     background: #3a5ec0;
 }

 .text-muted a {
     text-decoration: none;
     color: #4e73df;
 }

 .text-muted a:hover {
     text-decoration: underline;
 }

 @media (max-width: 768px) {
     .login-container {
         flex-direction: column;
         max-width: 500px;
     }

     .login-image {
         border-radius: 12px 12px 0 0;
         min-height: 180px;
     }

     .login-slogan {
         font-size: 1.1rem;
     }
 }
