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

    body {
      font-family: 'Inter', sans-serif;
      background: none;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* Header Space */
    .header-placeholder {
      min-height: 150px;
    }

    /* Main Container */
    .main-content {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 20px 40px;
    }

    .forgot-password-container {
      background: white;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      padding: 40px 32px;
      width: 100%;
      max-width: 440px;
      animation: slideUp 0.5s ease-out;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .icon-wrapper {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .icon-wrapper svg {
      width: 32px;
      height: 32px;
      stroke: white;
      fill: none;
      stroke-width: 2;
    }

    h2 {
      text-align: center;
      color: #1a202c;
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .subtitle {
      text-align: center;
      color: #718096;
      font-size: 14px;
      margin-bottom: 28px;
      line-height: 1.5;
    }

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

    label {
      display: block;
      color: #2d3748;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 8px;
    }

    input[type="email"] {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid #e2e8f0;
      border-radius: 8px;
      font-size: 15px;
      color: #2d3748;
      transition: all 0.3s ease;
      background: #f7fafc;
    }

    input[type="email"]:focus {
      outline: none;
      border-color: #204056;
      background: white;
      box-shadow: 0 0 0 3px rgba(32, 64, 86, 0.1);
    }

    input[type="email"]::placeholder {
      color: #a0aec0;
    }

    .error {
      color: #e53e3e;
      font-size: 13px;
      margin-top: 8px;
      display: block;
      min-height: 18px;
    }

    button[type="submit"] {
      width: 100%;
      padding: 14px;
      background: #204056;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(32, 64, 86, 0.4);
    }

    button[type="submit"]:hover {
      background: #183547;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(32, 64, 86, 0.5);
    }

    button[type="submit"]:active {
      transform: translateY(0);
    }

    .back-link {
      display: block;
      text-align: center;
      color: #667eea;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      margin-top: 20px;
      transition: color 0.3s ease;
    }

    .back-link:hover {
      color: #764ba2;
      text-decoration: underline;
    }

    .divider {
      display: flex;
      align-items: center;
      margin: 20px 0;
      color: #a0aec0;
      font-size: 13px;
    }

    .divider::before,
    .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #e2e8f0;
    }

    .divider::before {
      margin-right: 12px;
    }

    .divider::after {
      margin-left: 12px;
    }

    @media (max-width: 480px) {
      .forgot-password-container {
        padding: 32px 24px;
      }

      h2 {
        font-size: 24px;
      }

      .subtitle {
        font-size: 13px;
      }
    }
