 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);
 }

 .login-image {
     flex: 1;
     background: url("/assets/img/car-pooling.jpg") no-repeat center center;
     background-size: 100% 100%;
     position: relative;
     min-height: 300px;
     border-radius: 0 12px 12px 0;
     position: relative;

 }


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

 .login-logo {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 2rem;
 }

 .login-logo img {
     width: 100px;
     height: 80px;
     border-radius: 1rem;
 }

 .login-logo span {
     font-size: 1.3rem;
     font-weight: 600;
     color: #ff7644;
 }

 .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: #ff7644;
     border: none;
     border-radius: 8px;
     padding: 0.75rem;
     font-weight: 600;
     color: #fff;
     transition: all 0.2s;
 }

 .btn-login:disabled {
     background: #ff7644;
     opacity: 0.5;
     cursor: not-allowed;
 }

 .btn-login:hover {
     background: #fe6b3591;
 }

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

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

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

     .login-image {
         height: 180px;
     }
 }
