
// Rentiful standard typography rules
h1 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #223a72;
  margin-bottom: 24px;
  text-align: center;
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #223a72;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #223a72;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

body, p {
  font-size: 1rem;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: #737376;
}

.font-bold {
  font-weight: 700;
}

      html, body {
        font-family: "Inter", sans-serif;
      }
        body {
            background: #f6f7fb;
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding-top: 10vh;
        }
        .card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            padding: 48px 32px;
            max-width: 400px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .profile-img {
            width: 25vw;
            height: 25vw;
            max-width: 120px;
            max-height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 24px;
            border: 4px solid #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: width 0.3s ease, height 0.3s ease;
        }

        .name {
            font-size: clamp(1.25rem, 5vw, 1.5rem);
            font-weight: 700;
            color: #223a72;
            margin-bottom: 18px;
            text-align: center;
        }

        .email {
            font-size: clamp(0.875rem, 4vw, 1rem);
            color:rgb(115, 119, 124);
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.5;
        }

        .signout-btn {
            background: #ea5a1b;
            color: #fff;
            border: none;
            border-radius: 999px;
            padding: 12px 0;
            width: 70%;
            font-size: 1rem;
            font-weight: 400;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 8px;
        }

        .signout-btn:hover {
            background: #d84e18;
        }

        .signup-btn {
            background: #ea5a1b;
            color: #fff !important;
            border: none;
            border-radius: 999px;
            padding: 12px 0;
            width: 70%;
            font-size: 1rem;
            font-weight: 400;
            cursor: pointer;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: background 0.2s;
        }

        .signup-btn * {
          color: inherit;
        }

        .signup-btn.apple {
            margin-bottom: 18px;
        }

        .signup-btn:hover {
            background: #d84e18;
        }

        .signup-btn svg {
            height: 1.5em;
            width: 1.5em;
        }

        .logo {
            margin-bottom: 24px;
            margin-top: 16px;
            width: 240px;
            height: auto;
            display: block;
        }

        .heading {
            font-size: 1.5rem;
            font-weight: 700;
            color: #223a72;
            margin-bottom: 12px;
            text-align: center;
        }

        .subheading {
            font-size: 1rem;
            color:rgb(115, 119, 124);
            margin-bottom: 36px;
            text-align: center;
            line-height: 1.5;
        }

        .italic {
            font-style: italic;
            color: #9ca3af;
            font-size: 0.875rem;
            margin-top: 16px;
            text-align: center;
        }

        @media (max-width: 480px) {
          .card {
            padding: 48px 32px;
            max-width: 80%;
          }

          .profile-img {
            width: 50vw;
            height: 50vw;
          }

          .name {
            font-size: clamp(1.25rem, 6vw, 1.75rem);
          }

          .email {
            font-size: clamp(1rem, 4vw, 1.125rem);
          }

          .heading {
            font-size: 1.75rem;
          }

          .subheading {
            font-size: 1.125rem;
          }

          .italic {
            font-size: 1rem;
          }

          .signup-btn,
          .signout-btn {
            font-size: 1.125rem;
            padding: 16px 0;
            width: 70%;
          }
        }

        @media (min-width: 481px) {
          .card {
            max-width: 400px;
          }
          .profile-img {
            width: 120px;
            height: 120px;
          }
          .name {
            font-size: 1.5rem;
          }
          .email {
            font-size: 1rem;
          }
        }
  #profile-card,
  #signup-card {
    display: none;
  }
