body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #2A7B9B;
  background: linear-gradient(90deg,rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 0%, rgba(194, 215, 97, 1) 0%, rgba(200, 216, 84, 1) 0%, rgba(207, 217, 69, 1) 2%, rgba(246, 224, 10, 1) 29%, rgba(250, 225, 5, 1) 100%);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  width: 90%;
  max-width: 350px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.logo {
  width: 80px;
  margin-bottom: 15px;
}

h1 {
  font-size: 22px;
  margin-bottom: 10px;
}

p {
  font-size: 14px;
}

.btn {
  display: block;
  padding: 14px;
  margin: 12px 0;
  text-decoration: none;
  color: white;
  border-radius: 10px;
  font-weight: bold;
}

.apple {
  background: #000;
}

.google {
  background: #34a853;
}

.note {
  font-size: 12px;
  margin-top: 10px;
  color: #777;
}