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

body {
  margin: 0;
  padding: 0;
  background: #121212;
font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.container {
  width: 100%;
  padding: 36px 16px;
  box-sizing: border-box;
}

.card {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: #282828;
border-radius: 10px;
  padding: 26px;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.06);
}

.header {
  text-align: left;
  padding-bottom: 14px;
}

.logo {
  display: block;
  border: 0;
  outline: none;
  text-decoration: none;
}

.title {
  padding-top: 6px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
margin: 0;
}

.message {
  padding-top: 12px;
  font-size: 14px;
  color: #b3b3b3;
line-height: 22px;
  margin: 0;
}

.alert {
  background: #fff8e6;
  border-radius: 8px;
  border: 1px solid #ffecb5;
  padding: 12px;
  margin-top: 12px;
}

.alert p {
  font-size: 13px;
  color: #1db954;
line-height: 18px;
  margin: 0;
}

.cta-container {
  padding: 20px 0 8px 0;
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  background: #1db954;
  color: #ffffff;
  border: 1px solid #1db954;
transition: all 0.2s ease;
}

.cta-button:hover {
  background: #1ed760;
}

.footer {
  padding-top: 18px;
  font-size: 13px;
  color: #b3b3b3;
line-height: 20px;
}

.footer-note {
  padding-top: 18px;
  font-size: 12px;
  color: #94a3b8;
  line-height: 18px;
  border-top: 1px solid #f1f5f9;
  margin-top: 18px;
}

a:focus, button:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
