body {
      background: #e9f0fb;
    }
    .login-outer {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #e9f0fb;
    }
    .login-container {
      display: flex;
      min-height: 520px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      border-radius: 24px;
      overflow: hidden;
      background: #fff;
      max-width: 900px;
      width: 100%;
    }
    .login-left {
      flex: 1;
      background: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 48px 40px;
    }
    .login-form-title {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 24px;
      text-align: left;
    }
    .form-group {
      margin-bottom: 18px;
    }
    .forgot-link {
      float: right;
      font-size: 0.95rem;
      margin-top: 2px;
    }
    .remember-me {
      display: flex;
      align-items: center;
      margin-bottom: 18px;
    }
    .remember-me label {
      margin-left: 8px;
      font-size: 0.97rem;
      color: #555;
    }
    .login-btn {
      width: 100%;
      padding: 10px 0;
      font-size: 1.1rem;
      border-radius: 8px;
      margin-bottom: 16px;
    }
    .signup-link {
      text-align: center;
      margin-top: 16px;
      font-size: 0.97rem;
    }
    .signup-link a {
      color: #2563eb;
      text-decoration: none;
      font-weight: 500;
    }
    .login-right {
      flex: 1;
      background: #f6f9fe;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 48px 32px;
      text-align: center;
    }
    .login-right img {
      max-width: 220px;
      margin-bottom: 24px;
    }
    .right-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: #222;
    }
    .right-desc {
      font-size: 1rem;
      color: #666;
      margin-bottom: 18px;
    }