:root {
    --primary-color: #113ccf;
    --text-color: #000;
    --text-light: #555;
    --background-gradient: linear-gradient(to bottom, #ffafc2, #F985A0, #f9b2c2, #F985A0);
    --white: #fff;
    --border-radius: 20px;
    --rmfont: "Heebo", serif;
  }

  * {
    box-sizing: border-box;
  }

  html, body {
    margin: 0;
    padding: 0;
    font-family: var(--rmfont);
    color: var(--text-color);
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--background-gradient);
  }

  .container {
    width: 100%;
    max-width: 400px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0;
    transform: translateY(50px); /* Start position below */
    animation: slideUp 0.8s ease-out forwards;
  }

  @keyframes slideUp {
    0% {
      opacity: 0;
      transform: translateY(350px); /* Move from below */
    }
    100% {
      opacity: 1;
      transform: translateY(0); /* End position */
    }
  }

  .container h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .container h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
  }

  .input-group label {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

  .input-group input {
    width: 100%;
    max-width: 300px;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }

  button {
    width: 100%;
    max-width: 300px;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: bold;
    color: var(--white);
    background: black;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background 0.3s;
  }

  button:hover {
    background: #F985A0;
  }

  .footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    color: var(--white);
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
  }

  .footer a {
    color: var(--white);
  }

  .footer a:hover {
    text-decoration: underline;
  }

  /* Media Queries for responsiveness */
  @media (max-width: 768px) {
    .container {
      padding: 1.5rem;
    }

    .container h1 {
      font-size: 1.2rem;
    }

    .subtitle {
      font-size: 0.8rem;
    }

    .input-group input {
      max-width: 90%;
    }

    button {
      max-width: 90%;
    }

    .footer {
      font-size: 0.7rem;
      padding: 0.8rem;
    }
  }

  @media (max-width: 480px) {
    .container {
      padding: 1rem;
    }

    .container h1 {
      font-size: 1.1rem;
    }

    .input-group input {
      max-width: 100%;
    }

    button {
      max-width: 100%;
    }

    .footer {
      font-size: 0.6rem;
      padding: 0.5rem;
    }
  }
