body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7fa;
  margin: 0;
}

a{
  color: #0258ff;
}

.header{
  padding-top: 20px;
  margin-bottom: 30px;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
}

.left,
.right {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  flex: 1;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.right {
  max-width: 320px;
}

.hidden {
  display: none;
}

input {
  width: 97%;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

button {
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #0258ff;
  color: white;
  margin-top: 40px;
  width: 100%;
  font-size: 1.4rem;
}

#status {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/*#status div{
  position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(255, 255, 255, .8);
}*/

.card-component {
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #fafafa;
  position: relative;
}

#cb-test-cards-wrapper{
  width: 240px!important;
  position: relative!important;
    top: -300px!important;
  box-shadow: 1px 4px 15px 1px #000000;
}

.field {
  margin-bottom: 0.75rem;
}

.field-row {
  display: flex;
  gap: 0.75rem;
}

.field-row .field {
  flex: 1;
}

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #333;
}

.summary-amounts {
  margin-top: 1rem;
  border-top: 1px solid #eee;
  padding-top: 0.75rem;
  font-size: 0.95rem;
}

.summary-row {
  justify-content: space-between;
  margin-bottom: 0.25rem;
  display: flex;
}

.summary-row.summary-total {
  font-weight: 600;
  margin-top: 0.5rem;
}

.pricing-error {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #c0392b; /* red-ish error color */
}

.help-text {
  font-size: 0.85rem;
  margin-top: 0.25rem;
  color: #555;
}

.locked-email {
  font-weight: 500;
}

.modal-overlay.hidden{
  display: none;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal {
  background: #ffffff;
  border-radius: 8px;
  max-width: 420px;
  width: 90%;
  padding: 24px 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  text-align: left;
}

.modal-title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-message {
  margin: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.modal-button {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  background: #2563eb;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.modal-button:hover {
  opacity: 0.95;
}

.terms-row {
  margin-top: 36px;
  margin-bottom: 18px;
}

.terms-row input{
  width: initial;
}

.terms-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.terms-label input[type="checkbox"] {
  margin-top: 2px;
}

.error-text {
  color: #b91c1c; /* red-700 */
  font-size: 0.85rem;
}

.footer{
  background-color: #222121;
  color: #fff;
  margin-top: 30px;
}

.footer a{
  color: #fff;
  text-decoration: none;
  padding: 4px 10px;
}

.footer .left,
.footer .right{
  background: initial;
  border-radius: initial;
  box-shadow: none;
}