.question-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.question-container img {
  width: 28px;
  height: 28px;
}
.question-container h4 {
  max-width: 340px;
}

.bullet-container:nth-child(0) {
  margin-top: 2rem;
}

.bullet-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.375rem;
}

.bullet-container .bullet {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--secondary-color);
}

.bullet-container p {
  max-width: 350px;
}

.note-container {
  margin-top: 1.375rem;
  border-radius: 6px;
  padding-block: 0.75rem;
  margin-inline: 1rem;
  background-color: #ff893366;
  border: 1px solid var(--secondary-color);
}

.choose-gender-title {
  margin-inline: auto;
  max-width: 300px;
}

.choose-gender-info {
  max-width: 200px;
  margin-inline: auto;
  line-height: 1.2;
}

.readiness-card {
  width: 95%;
  margin-inline: auto;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 0.625rem;
  border: none;
  border-radius: 14px;
}

.readiness-card .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 1rem;
  padding-block: 1rem;
}

.readiness-card .heading p {
  border: 1px solid rgb(229, 231, 235);
  border-radius: 4px;
  padding-right: 8px;
  padding-left: 8px;
}

.readiness-card .info {
  display: flex;
  align-items: start;
  margin-top: 0.75rem;
  gap: 0.3rem;
  padding: 0.625rem;
  border-radius: 14px;
  background-color: #f1f1f1;
}

.circular-bar {
  width: 100%;
  height: 100%;
  max-width: 150px;
  max-height: 150px;
  margin-inline: auto;
}

.spacer {
  width: 100%;
  height: 1px;
  background-color: #f1f1f1;
}

.input-group-text {
  background-color: transparent;
  border-bottom: 1px green solid;
}

.input-group input {
  border-bottom: 1px green solid;
  padding-block: 0.5rem;
  border-radius: 10px;
  letter-spacing: 0.15px;
  font-weight: 500;
  font-size: 14px;
  color: rgb(28, 27, 31);
}

.custom-input {
  position: relative;
}

.custom-input img {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.custom-input img:nth-child(1) {
  left: 30px;
}
.custom-input img:nth-child(2) {
  display: none;
}
.custom-input img:nth-child(3) {
  display: none;
}
.custom-input.error img:nth-child(2) {
  right: 0px;
  display: block;
}
.custom-input.success img:nth-child(3) {
  width: 28px;
  right: 0px;
  display: block;
}

.custom-input input {
  width: 100%;
  padding-left: 2.8rem;
  padding-block: 0.5rem;
  border: grey 1px solid;
  border-radius: 4px;
  border-bottom-color: green;
  font-weight: 500;
  font-size: 14px;
  color: black;
}

.custom-input .loading {
  opacity: 0.4;
}

.custom-input input:focus {
  border: 1px solid grey;
  outline: none;
  border-bottom-color: green;
  border-bottom-style: solid;
  border-bottom-width: 2px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.checkbox button {
  position: relative;
  background-color: transparent;
  border: 2px black s40id;
  width: 28px;
  height: 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s;
  padding: 0;
}

.checkbox button img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.checkbox button.active {
  background-color: var(--primary-color);
  border: none;
}

.msg {
  display: none;
}

.msg.visible {
  display: block;
}

.submit-email:disabled {
  opacity: 0.8;
}
