@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Cairo:wght@200..1000&display=swap');
    
    * {
      font-family: 'Cairo', sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      overflow: hidden;
    }

    body {
      height: 100vh;
      background: linear-gradient(135deg, #ffffff 40%, #c4cfe2 100%);
      /* background-image: url(assets/images/LoginPage1.png);
      background-size: cover; */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px;
      margin: 0;
    }

    .login-container {
      width: 100%;
      max-width: 500px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin: auto;
      flex-shrink: 0;
    }

    /* Logo Section */
    .logo-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin-bottom: 0;
    }

    .logo-box {
      width: 70px;
      height: 70px;
      background: #ffffff;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .logo-icon {
      width: 45px;
      height: 45px;
      color: #1E4A90;
    }

    .system-title {
      font-size: 22px;
      font-weight: 700;
      color: #293445;
      text-align: center;
      margin: 0;
    }

    .system-subtitle {
      font-size: 14px;
      color: #697278;
      text-align: center;
      margin: 0;
    }

    /* Login Card */
    .login-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      width: 100%;
    }

    .login-title {
      font-size: 24px;
      font-weight: 700;
      color: #293445;
      text-align: center;
      margin: 0 0 6px 0;
    }

    .login-subtitle {
      font-size: 13px;
      color: #697278;
      text-align: center;
      margin: 0 0 20px 0;
    }

    /* Form Styles */
    .form-group {
      margin-bottom: 16px;
    }

    .form-label {
      font-size: 14px;
      font-weight: 600;
      color: #293445;
      margin-bottom: 8px;
      display: block;
    }

    .input-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }

    .input-icon {
      position: absolute;
      right: 15px;
      color: #697278;
      font-size: 20px;
      z-index: 1;
    }

    .form-control {
      width: 100%;
      padding: 12px 45px 12px 15px;
      border: 1px solid #e1e1e1;
      border-radius: 10px;
      font-size: 14px;
      transition: all 0.3s ease;
      background: #ffffff;
    }

    .form-control:focus {
      outline: none;
      border-color: #1E4A90;
      box-shadow: 0 0 0 3px rgba(30, 74, 144, 0.1);
    }

    .password-toggle {
      position: absolute;
      left: 15px;
      color: #697278;
      font-size: 20px;
      cursor: pointer;
      z-index: 1;
      transition: color 0.3s ease;
    }

    .password-toggle:hover {
      color: #1E4A90;
    }

    /* Remember Me & Forgot Password */
    .form-options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .remember-me {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .remember-me input[type="checkbox"] {
      width: 18px;
      height: 18px;
      cursor: pointer;
      accent-color: #1E4A90;
    }

    .remember-me label {
      font-size: 14px;
      color: #293445;
      cursor: pointer;
      margin: 0;
    }

    .forgot-password {
      font-size: 14px;
      color: #1E4A90;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .forgot-password:hover {
      color: #1a3d7a;
      text-decoration: underline;
    }

    /* Login Button */
    .login-btn {
      width: 100%;
      padding: 12px;
      background: #1E4A90;
      color: #ffffff;
      border: none;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.3s ease;
      margin-bottom: 20px;
    }

    .login-btn:hover {
      background: #1a3d7a;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(30, 74, 144, 0.3);
    }

    .login-btn ion-icon {
      font-size: 20px;
    }

    /* Divider */
    .divider {
      display: flex;
      align-items: center;
      margin: 20px 0;
      gap: 15px;
    }

    .divider-line {
      flex: 1;
      height: 1px;
      background: #e1e1e1;
    }

    .divider-text {
      font-size: 14px;
      color: #697278;
      padding: 0 10px;
    }

    /* Support Button */
    .support-btn {
      width: 100%;
      padding: 12px;
      background: #ffffff;
      color: #1E4A90;
      border: 2px solid #1E4A90;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.3s ease;
    }

    .support-btn:hover {
      background: #f8f9fa;
      border-color: #1a3d7a;
      color: #1a3d7a;
    }

    .support-btn ion-icon {
      font-size: 20px;
    }

    /* Footer */
    .login-footer {
      text-align: center;
      margin-top: 15px;
      color: #697278;
    }

    .login-footer p {
      font-size: 13px;
      margin-bottom: 8px;
    }

    .login-footer a {
      color: #1E4A90;
      text-decoration: none;
      font-weight: 500;
    }

    .login-footer a:hover {
      text-decoration: underline;
    }

    .copyright {
      font-size: 11px;
      color: #adb5bd;
      margin-top: 10px;
    }

    /* Responsive */
    @media (max-width: 576px) {
      body {
        padding: 20px 10px 10px;
        overflow-y: auto;
        justify-content: flex-start;
      }

      .login-container {
        gap: 12px;
      }

      .login-card {
        padding: 25px 20px;
      }

      .system-title {
        font-size: 18px;
      }

      .login-title {
        font-size: 22px;
      }

      .logo-section {
        gap: 8px;
        margin-top: 10px;
      }

      .login-footer {
        margin-top: 12px;
      }
    }