@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  color: #111;
  background: radial-gradient(
    circle at 70% 40%,
    #eef5ff 0%,
    #fafafa 40%,
    #ffffff 100%
  );
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 8rem;
}

.wrapper {
  max-width: 700px;
  width: 100%;
}

.logo {
  width: 300px;
  margin-bottom: 4rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
}

footer {
  position: absolute;
  bottom: 2rem;
  left: 8rem;
  font-size: 0.85rem;
  color: #999;
}

/* ✅ Centered for tablets and mobile */
@media (max-width: 1200px) {
  body {
    padding: 3rem;
    align-items: center;
    text-align: center;
  }

  footer {
    left: 0;
    right: 0;
    text-align: center;
    bottom: 1rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  .logo {
    margin-bottom: 3rem;
  }
}

/* ✅ Large screens: add 400px margin on the left */
@media (min-width: 1440px) {
  body {
    padding-left: 400px;
  }

  footer {
    left: 400px;
  }
}
