* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

.registration-container {
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px 120px 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
#registrationForm{
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .registration-container {
    padding: 80px 60px 120px 60px;
  }
}

@media (min-width: 1024px) {
  .registration-container {
    padding: 80px 120px 120px 120px;
  }
}

@media (min-width: 1440px) {
  .registration-container {
    padding: 80px 200px 120px 200px;
  }
}

.registration-content {
  width: 100%;
  max-width: 480px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.registration-header {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.registration-title {
  text-align: center;
  color: var(--Color-Neutral---New-Black, black);
  font-size: clamp(24px, 5vw, 32px);
  font-family: Synchrony Sans;
  font-weight: 700;
  line-height: 1.25;
  word-wrap: break-word;
}

.registration-description {
  align-self: stretch;
  color: var(--Color-Neutral---New-Black, black);
  font-size: clamp(16px, 3.5vw, 20px);
  font-family: Synchrony Sans;
  font-weight: 400;
  line-height: 1.4;
  word-wrap: break-word;
  text-align: center;
}

@media (min-width: 768px) {
  .registration-description {
    text-align: left;
  }
}

.input-field {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  display: flex;
}

.input-wrapper {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  display: flex;
}
.input-box::placeholder{
color: var(--Neutral-700, #333);
/* Regular/S */
font-family: "Open Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
}
.input-box {
  align-self: stretch;
  padding: 12px 16px;
  background: white;
  border-radius: 6px;
  outline: 1px var(--Color-Neutral---New-500, #B1B1B1) solid;
  outline-offset: -1px;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.input-content {
  flex: 1 1 0;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: flex;
}

.input-label {
  color: #333333;
  font-size: 16px;
  font-family: Open Sans;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
}

.registration-help-text{
  align-self: stretch;
  color: var(--Color-Primary-Primary-500, #34657F);
  font-size: 12px;
  font-family: Open Sans;
  font-weight: 600;
  line-height: 20px;
  word-wrap: break-word;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.registration-help-text:hover {
  color: #2a5366;
  text-decoration: underline;
}

.button-group {
  justify-content: flex-start;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .button-group {
    flex-direction: row;
  }
}

.btn-registration-next {
  flex: 1 1 auto;
  height: 48px;
  min-width: auto;
  padding: 12px 24px;
  background: var(--Color-Information-Information-500, #34657F);
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-registration-next:hover {
  background: #2a5366;
}

.btn-registration-next:active {
  background: #1f3e4d;
}

@media (min-width: 640px) {
  .btn-registration-next {
    min-width: 200px;
  }
}

.btn-registration-next-text {
  flex: 1 1 0;
  text-align: center;
  color: var(--Color-Neutral---New-White, white);
  font-size: 14px;
  font-family: Open Sans;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 20px;
  word-wrap: break-word;
}

.btn-registration-cancel {
  flex: 1 1 auto;
  height: 48px;
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-registration-cancel:hover {
  background: rgba(52, 101, 127, 0.1);
}

.btn-registration-cancel:active {
  background: rgba(52, 101, 127, 0.2);
}

.btn-registration-cancel-text {
  text-align: center;
  color: #34657F;
  font-size: 14px;
  font-family: Open Sans;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 20px;
  word-wrap: break-word;
}
