@import url("https://square-fonts-production-f.squarecdn.com/square-sans.min.css");

html {
  color: #151c1f;
  font-family: var(--square-sans-text);
  font-size: 16px;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

h1 {
  font-size: 2.2rem;
  line-height: 2.5rem;
  margin-bottom: 2rem;
}

p {
  font-size: 1.2rem;
  line-height: 2rem;
  color: #444;
  margin-bottom: 2.2rem;
  white-space: pre-line;
}

a {
  color: rgba(0, 106, 255, 1);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

a:hover {
  color: rgba(0, 95, 229, 1);
}

.card {
  padding: 2rem;
  text-align: center;
  max-width: 600px;
}

.messages {
  max-width: 700px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.02);
}

.btn {
  background-color: rgba(251, 86, 7, 1);
  color: white;
  border-radius: 8px;
  padding: 1.2rem 0;
  display: block;
  width: 60%;
  margin: 0 auto;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background-color: rgba(224, 80, 13, 1);
  color: white;
}

.square-logo {
  display: block;
  margin: 0 auto;
  height: 32px;
}

.image-row {
  max-width: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.icon-success {
  font-size: 48px;
  color: green;
}

.icon-error {
  font-size: 48px;
  color: red;
}

.button-group {
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 12px;  /* automatically spaces buttons */
}

.store-button img {
  width: 200px;
  height: auto;
  margin: 10px 0;
  display: block;
}