:root {
      --primary-color: #F96900;
      --secondary-color: #65DEF1;
      --dark-accent: #333333;
      --light-bg: #F7F7F7;
      --white: #FFFFFF;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
      background-color: var(--light-bg);
      color: var(--dark-accent);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    
    /* Navigation styling */
    nav {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 100;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            width: 100%;
            max-width: none;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1rem;
            padding: 0;
            margin: 0;
            margin-left: auto;
        }
        
        .nav-links li {
            margin: 0;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }
        
        .nav-links a:hover {
            background-color: var(--white);
            color: var(--primary-color);
        } 
    
    /* Main content styling */
    .page-container {
      display: flex;
      flex: 1;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 120px 20px 60px;
    }
    
    .login-container {
      background-color: var(--white);
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 450px;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }
    
    .login-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 8px;
      background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    }
    
    .login-heading {
      color: var(--primary-color);
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    
    .input-group {
      margin-bottom: 1.5rem;
    }
    
    .input-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: var(--dark-accent);
    }
    
    .input-group input {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }
    
    .input-group input:focus {
      outline: none;
      border-color: var(--secondary-color);
      box-shadow: 0 0 0 2px rgba(101, 222, 241, 0.2);
    }
    
    .login-button {
      background-color: var(--primary-color);
      color: white;
      border: none;
      border-radius: 6px;
      padding: 14px;
      width: 100%;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .login-button:hover {
      background-color: #e05e00;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(249, 105, 0, 0.3);
    }
    
    .separator {
      display: flex;
      align-items: center;
      text-align: center;
      margin: 1.5rem 0;
      color: #777;
    }
    
    .separator::before,
    .separator::after {
      content: '';
      flex: 1;
      border-bottom: 1px solid #ddd;
    }
    
    .separator span {
      padding: 0 10px;
      font-weight: 500;
    }
    
    .social-login-button {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 12px;
      margin-bottom: 1rem;
      border-radius: 6px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .google-login {
      background-color: white;
      color: #444;
      border: 1px solid #ddd;
    }
    
    .google-login:hover {
      background-color: #f5f5f5;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .apple-login {
      background-color: black;
      color: white;
      border: none;
    }
    
    .apple-login:hover {
      background-color: #333;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .facebook-login {
      background-color: #1A77F2;
      color: white;
      border: none;
    }
    
    .facebook-login:hover {
      background-color: #0d6efd;
      box-shadow: 0 2px 8px rgba(26, 119, 242, 0.3);
    }
    
    /* Toast notification styling */
    .toast {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: white;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border-radius: 8px;
      padding: 16px;
      display: flex;
      align-items: center;
      z-index: 1000;
      animation: fadeIn 0.3s, fadeOut 1s 4s;
      opacity: 0;
      max-width: 350px;
    }
    
    .toast.show {
      opacity: 1;
    }
    
    .toast-icon {
      margin-right: 12px;
      flex-shrink: 0;
    }
    
    .toast-content {
      flex: 1;
    }
    
    .toast-close {
      background: none;
      border: none;
      cursor: pointer;
      margin-left: 12px;
      color: #777;
    }
    
    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }
    
    @keyframes fadeOut {
      from {opacity: 1;}
      to {opacity: 0;}
    }
    
    .forgot-password {
      text-align: right;
      margin-top: -16px;
      margin-bottom: 16px;
    }

    .forgot-password a {
      color: var(--primary-color);
      text-decoration: none;
      font-size: 0.9rem;
    }

    .forgot-password a:hover {
      text-decoration: underline;
    }

    .signup-prompt {
      text-align: center;
      margin-top: 20px;
      font-size: 0.95rem;
    }

    .signup-prompt a {
      color: var(--primary-color);
      font-weight: 600;
      text-decoration: none;
    }

    .signup-prompt a:hover {
      text-decoration: underline;
    }

    /* Responsive styling */
    @media screen and (max-width: 768px) {
      .login-container {
        padding: 30px 20px;
      }
    }