    /* Custom styles for the login page */
    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(135deg, #FFB26B, #FF7B54); /* Orange gradient */
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
      padding: 1rem; /* Add some padding for small screens */
    }

    .login-card-container {
      background: #fff;
      border-radius: 1.5rem; /* Increased border-radius for softer look */
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Stronger shadow */
      padding: 3rem 2.5rem;
      width: 100%;
      max-width: 400px; /* Max width for larger screens */
      text-align: center;
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .login-card-container h1 {
      color: #FF7B54; /* Primary color for heading */
      margin-bottom: 1.8rem; /* More space below heading */
      font-size: 2.2rem; /* Larger heading */
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
    }

    .login-card-container h1 i {
      font-size: 2rem;
    }

    .login-card-container input {
      width: 100%;
      padding: 1rem 1.25rem; /* Larger padding for inputs */
      margin: 0.75rem 0; /* More vertical spacing */
      border: 2px solid #FFB26B; /* Accent color border */
      border-radius: 0.75rem; /* Rounded input fields */
      font-size: 1.1rem;
      color: #322e2f;
      outline: none; /* Remove default focus outline */
      transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    }

    .login-card-container input:focus {
      border-color: #FF7B54; /* Highlight on focus */
      box-shadow: 0 0 0 3px rgba(255, 123, 84, 0.2); /* Soft glow */
    }

    .login-card-container button {
      width: 100%;
      padding: 1rem;
      border: none;
      border-radius: 0.75rem;
      background: #FF7B54; /* Primary button color */
      color: #fff;
      font-size: 1.2rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s ease-in-out, transform 0.2s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.5rem; /* More space above the button */
    }

    .login-card-container button:hover {
      background: #FFB26B; /* Accent color on hover */
      transform: translateY(-2px); /* Slight lift effect */
    }

    .login-card-container .hint {
      margin-top: 1.5rem;
      font-size: 0.95rem;
      color: #666;
    }

    .login-card-container .hint a {
      color: #FF7B54;
      text-decoration: none;
      font-weight: 700;
      transition: color 0.2s ease-in-out;
    }

    .login-card-container .hint a:hover {
      color: #FFB26B;
    }

    /* Styles for the "Welcome back" state */
    .login-card-container .welcome-message {
      font-size: 1.4rem;
      color: #322e2f;
      margin-bottom: 2rem;
      font-weight: 600;
    }

    .login-card-container .login-btn,
    .login-card-container .logout-btn {
      margin-top: 1rem;
      padding: 1rem;
      font-size: 1.1rem;
    }

    .login-card-container .logout-btn {
      background: #dc3545; /* Red for logout */
    }

    .login-card-container .logout-btn:hover {
      background: #c82333;
    }