body {
    background-color: #f8f9fa;
  }
  
  .login-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px;
  
  }

  body,
.login-container {
  background-color: #ffffff !important;
}
  
  .login-box {
    display: flex;
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 6px;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
  }
  
  .login-left {
    flex: 1;
    text-align: center;
    border-right: 1px solid #ccc;
    padding-right: 20px;
  }
  
  .login-left .login-logo {
    max-height: 50px;
    margin-bottom: 20px;
  }
  
  .login-left .login-links a {
    text-decoration: none;
    color: #333;
    margin: 0 8px;
    font-weight: 500;
  }
  
  .login-left .login-links a:hover {
    text-decoration: underline;
  }
  
  .login-right {
    flex: 1;
    padding-left: 20px;
  }
  
  .login-right input {
    height: 48px;
    font-size: 16px;
  }
  
  .btn-danger {
    background-color: #aa1e25;
    border-color: #aa1e25;
  }
  
  .btn-danger:hover {
    background-color: #8a191f;
  }

  .login-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }

  .login-link:hover {
    text-decoration: underline;
    color: #000; 
  }


