
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.notification {
  display: none;
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: #38c172;
  color: #fff;
  padding: 16px 38px;
  border-radius: 10px;
  font-size: 1.13em;
  box-shadow: 0 4px 24px rgba(56,193,114,0.13);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
}
.notification.show {
  display: block;
  opacity: 1;
}

body {
  background-image: url('bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.container {
  max-width: 420px;
  width: 100%;
  margin: 56px auto 0 auto;
  padding: 40px 32px 32px 32px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(16, 38, 70, 0.08);
}
h1 {
  font-family: "Fraunces", serif;
  font-size: 2.1em;
  font-weight: 700;
  margin: 0 0 32px 0;
  letter-spacing: -1px;
  color: #1a202c;
  text-align: left;
}
.field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 28px;
  gap: 0;
}
.input-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
label {
  width: 100%;
  font-weight: 600;
  color: #3b4a6b;
  font-size: 1.04em;
  margin-bottom: 7px;
}
input[type="text"] {
  flex: 1;
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  background: #f9fafb;
  font-size: 1.08em;
  color: #222;
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: none;
}
input[type="text"]:focus {
  outline: none !important;
  box-shadow: 0 0 0 2px #e6eeff;
  background: #f9fafb;
}
button {
  padding: 12px 22px;
  background: #1652f0;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.08em;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(22,82,240,0.07);
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.2px;
}
button:hover, button:focus {
  background: #0a2e8c;
  box-shadow: 0 4px 16px rgba(22,82,240,0.13);
}
.donate-btn {
  display: block;
  width: 100%;
  margin: 32px 0 12px 0;
  padding: 14px 0;
  background: #0a2e8c;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  font-size: 1.13em;
  letter-spacing: 0.5px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(10,46,140,0.07);
}
.donate-btn:hover, .donate-btn:focus {
  background: #1652f0;
  box-shadow: 0 4px 16px rgba(22,82,240,0.13);
}
.info {
  color: #6b7280;
  font-size: 1.01em;
  text-align: center;
  margin-top: 22px;
}
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrapper input[type="text"] {
  width: 100%;
  padding-right: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.copy-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  padding: 0 18px;
  background: rgba(22,82,240,0.08);
  color: #1652f0;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: none;
  z-index: 2;
}
.copy-btn:hover, .copy-btn:focus {
  background: #1652f0;
  color: #fff;
}
@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding: 16px 20px 16px 20px;
    margin: 20px 20px;
  }
  label {
    width: 100%;
    font-size: 0.98em;
  }
  .donate-btn {
    font-size: 1em;
  }
  h1 {
    font-size: 1.8em;
  }
} 