    body {
      /**background: linear-gradient(135deg, #2e3a59, #1f2a40);**/
      color: #fff;
      font-family: 'Segoe UI', sans-serif;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .login-container {
      background: #fff;
      color: #333;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
      width: 100%;
      max-width: 400px;
    }

    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 20px;
    }

    .logo img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-bottom: 10px;
    }

    .form-control:focus {
      box-shadow: 0 0 5px rgba(78, 115, 223, 0.6);
    }

    .toggle-password {
      position: absolute;
      right: 15px;
      top: 35px;
      cursor: pointer;
      color: #666;
    }

    .form-group {
      position: relative;
    }

    .forgot-link {
      text-align: right;
      display: block;
      font-size: 0.9rem;
      margin-top: 5px;
    }

    .btn-primary {
      width: 100%;
    }

    /* Toast positioning */
    .toast-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1060;
    }