* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", sans-serif;
}
body {
  background: #f5f5f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}
p {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #1d1d1f;
}
input {
  width: 260px;
  padding: 12px 16px;
  margin: 8px 6px;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
  background: white;
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease;
}
input:focus {
  border-color: #0071e3;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
}
#btn {
  padding: 12px 22px;
  border-radius: 12px;
  border: none;
  background: #0071e3;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s ease;
}

#btn:hover {
  background: #005bb5;
}
.js-td {
  margin-top: 40px;
  width: 100%;
  max-width: 500px;
}
.js-td p {
  background: white;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
#btn-2 {
  background: #ff3b30;
  border: none;
  color: white;
  padding: 6px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s ease;
}
#btn-2:hover {
  background: #cc2e25;
}
