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

body {
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: Arial, sans-serif;

  background: linear-gradient(
    135deg,
    #f6ead5,
    #f4f7f3
  );
}

.container {
  text-align: center;
  width: 100%;
  max-width: 700px;
  padding: 20px;
}

.logo {
  width: 70px;
  height: 70px;

  margin: 0 auto 30px;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    #ff9a00,
    #ff3d3d
  );

  display: flex;
  justify-content: center;
  align-items: center;

  color: white;
  font-size: 30px;

  box-shadow: 0 10px 20px rgba(255, 94, 0, 0.2);
}

h1 {
  font-size: 34px;
  margin-bottom: 18px;
  color: #111827;
}

p {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
}

.email-box {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.input-wrapper {
  display: flex;
  align-items: center;

  width: 360px;
  padding: 14px 18px;

  border: 1px solid #d1d5db;
  border-radius: 12px;

  background: white;
}

.input-wrapper i {
  color: #9ca3af;
  margin-right: 10px;
}

.input-wrapper input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
}

button {
  border: none;
  padding: 14px 28px;

  border-radius: 12px;

  background: linear-gradient(
    135deg,
    #ff9a00,
    #ff3d3d
  );

  color: white;
  font-size: 15px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.footer-text {
  margin-top: 28px;
  color: #6b7280;
  font-size: 15px;
}

@media (max-width: 768px) {

  .container {
    padding: 20px;  
}

  h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  p {
    font-size: 16px;
  }

  .email-box {
    flex-direction: column;
    align-items: center;
  }

  .input-wrapper {
    width: 100%;
  }

  button {
    width: 100%;
  }
}