 :root {
      --navy-blue: #02203e;
      --gold: #eea412;
      --light-gold: #f8d486;
      --dark-blue: #011225;
      --light-blue: #e6f0ff;
      --white: #ffffff;
      --off-white: #f8f9fa;
      --gray: #6c757d;
      --dark-gray: #343a40;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Times New Roman', Times, serif;
      background: var(--light-blue);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      background-image: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    }

    .login-container {
      width: 90%;
      max-width: 450px;
      background: var(--white);
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      position: relative;
      margin: 20px;
      transition: transform 0.3s ease;
    }

    .login-container:hover {
      transform: translateY(-5px);
    }

    .header {
      background: var(--navy-blue);
      color: var(--white);
      padding: 25px;
      text-align: center;
      position: relative;
    }

    .header::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 100%;
      height: 20px;
      background: var(--gold);
      clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    }

    .header h1 {
      font-size: 24px;
      margin-bottom: 5px;
      font-weight: 600;
    }

    .header p {
      font-size: 14px;
      opacity: 0.9;
    }

    .logo {
      width: 70px;
      height: 70px;
      background: var(--white);
      border-radius: 50%;
      margin: 0 auto 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 3px solid var(--gold);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .logo i {
      color: var(--navy-blue);
      font-size: 32px;
    }

    .login-form {
      padding: 30px;
    }

    .form-group {
      position: relative;
      margin-bottom: 20px;
    }

    .form-group i {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gold);
    }

    input[type="email"],
    input[type="password"] {
      font-family: 'Times New Roman', Times, serif;
      width: 100%;
      padding: 12px 15px 12px 45px;
      border: 2px solid var(--off-white);
      border-radius: 30px;
      font-size: 15px;
      transition: all 0.3s;
      background: var(--off-white);
      color: var(--dark-gray);
    }

    input[type="email"]:focus,
    input[type="password"]:focus {
      border-color: var(--gold);
      outline: none;
      box-shadow: 0 0 0 3px rgba(238, 164, 18, 0.2);
    }

    input::placeholder {
      font-family: 'Times New Roman', Times, serif;
      color: var(--gray);
      opacity: 0.7;
    }

    .submit-btn {
      font-family: 'Times New Roman', Times, serif;
      width: 40%;
      margin-left: 100px;
      padding: 12px;
      background: var(--gold);
      color: var(--white);
      border: none;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .submit-btn:hover {
      background: var(--dark-blue);
      transform: translateY(-2px);
    }

    .submit-btn i {
      font-size: 18px;
    }

    .footer {
      text-align: center;
      padding: 15px;
      font-size: 12px;
      color: var(--gray);
      border-top: 1px solid var(--off-white);
    }

    @media (max-width: 480px) {
      .header {
        padding: 20px;
      }
      
      .header h1 {
        font-size: 20px;
      }
      
      .logo {
        width: 60px;
        height: 60px;
      }
      
      .login-form {
        padding: 25px;
      }
      
      input[type="email"],
      input[type="password"] {
        padding: 10px 15px 10px 40px;
        font-size: 14px;
      }
      
      .submit-btn {
        padding: 10px;
        font-size: 15px;
      }
    }

    @media (max-width: 360px) {
      .header h1 {
        font-size: 18px;
      }
      
      .header p {
        font-size: 12px;
      }
    }

    /* Animation */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .login-container {
      animation: fadeIn 0.6s ease-out;
    }