* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Nunito', sans-serif; */
}

h4,
button {
  font-family: "Nunito", sans-serif;
}

html,
body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  color: #404040;
  height: 100%;
  display: flex;
}

h4 {
  font-weight: 400;
  font-size: 24px;
  margin: 24px 0;
}

h4 .bolder {
  font-weight: 600;
  line-height: 1.3;
}

p {
  font-family: "Roboto", sans-serif !important;
  font-size: 16px;
  color: #404040;
}

p .bolder {
  font-weight: 700;
}

button {
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0%;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

.modal-container {
  background: #fff;
  width: 90%;
  max-width: 600px;
  height: 500px; /* Set a fixed height or adjust as needed */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.modal-header {
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
  background-color: #fff;
  box-sizing: border-box;
}

.modal-close-button {
  background: transparent;
  border: none;
  border: none;
  font-size: 32px;
  line-height: 32px;
  cursor: pointer;
  z-index: 10000;
  color: #404040;
  cursor: pointer;
}

.modal-close-button:hover {
  color: #6f6f6f;
}

.modal-content {
  flex-grow: 1;
  /* overflow-y: auto; */
}

.modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.modal-close-button {
  position: absolute;
}

/* border: 1px #e1e7ef;
  box-shadow: 0px 3.49px 5.23px -3.49px #0000001a;
  box-shadow: 0px 8.72px 13.07px -2.61px #0000001a; */

.container {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures spacing between body and bottom button */
  align-items: center;
  text-align: center;
  background: white;
  padding: 40px 32px;
  width: 100%;
  max-width: 350px;
  height: 100vh; /* Makes the container take full viewport height */
  box-sizing: border-box; /* Ensures padding is included in height */
}

.body {
  flex-grow: 1; /* Allows the body to take up available space */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers content vertically */
  align-items: center;
}

.bottom-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: auto;
}

.logo {
  width: auto;
  padding: 28px 14px;
}

.info {
  display: flex;
  align-items: center;
  text-align: left;
  margin: 0 0 24px 0;
}

.info img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.primary-button {
  width: 296px;
  height: 42px;
  background: #edff00;

  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  box-shadow: 0px 4px 4px 0px #4242421a;
  cursor: pointer;
  color: #404040;
}

.secondary-button {
  width: 169px;
  height: 42px;
  margin-top: 16px;
  background: #f8f8f8;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  box-shadow: 0px 4px 4px 0px #4242421a;
  cursor: pointer;
  color: #404040;
}

.icon-container {
  margin-right: 10px;
  display: flex;
  width: 36px;
  height: 36px;
  padding: 0px 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--Secondary-Neutral-Grey-Light, #f4f4f4);
  border-radius: 50%;
}

.infoBullet {
  padding: 12px 16px;
  margin-top: 24px;
  border-radius: var(--Radius-Radius12, 12px);
  background: var(--Secondary-Neutral-Grey-Light, #f4f4f4);
}

.infoBullet .icon-container {
  float: left;
}

.infoBullet p {
  text-align: left;
}

.displayNone {
  display: none;
}
