.innerContainer {
  display: flex;
  flex-direction: row;
  color: Black;
  align-items: center;
  justify-content: flex-start;
  padding: 0 40px;
  gap: 2rem;
  height: 100%;
  @media screen and (max-width: 479px) {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: unset;
    height: 136vh;
  }
}

.mcontainer {
  /* display: flex; */
  flex-direction: row;
  color: rgb(234 85 85);
  padding: 0 20px;
  height: 100vh;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  /* background: red; */
  background-image: url("../images/background.jpg");
  @media screen and (max-width: 479px) {
    display: flex;
    flex-direction: column;
  }
}

.rightSection {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
  align-content: center;
  justify-content: center;
  align-items: center;
  @media screen and (max-width: 479px) {
    width: 100%;
  }
}
.leftSection {
  width: 30%;
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 5px;

  @media screen and (max-width: 479px) {
    width: 100%;
    padding-bottom: 16px;
  }
}
.image-logo {
  width: 18.625rem;
  margin-bottom: 1.5rem;
}
.leftSection h2 {
  font-size: 1.8rem;
  color: #2d2a2b;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
}

.leftSection p {
  font-size: 0.8rem;
  color: #535151;
  margin-bottom: 40px;
  font-family:
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.outerContainer {
  /* display: flex; */
  width: 100%;
  height: 100%;
  padding: 10px;
  flex-direction: column;
  align-items: center;
}

.rightSection h3 {
  font-size: 1.6rem;
  color: #e2d8da;
  display: flex;
  flex-direction: column;
}
.formsection {
  background-color: #110222bf;
  border-radius: 24px;
  width: 400px;
  height: 500px;
  padding: 60px 40px;
  /* position: relative;
  left: 45%;
  transform: translate(-50%); */
  @media screen and (max-width: 479px) {
    position: unset;
    transform: none;
  }
}
.text-field {
  color: #dc67b9;
  background-color: #fff0;
  border: 1px #000;
  border-bottom: 1px solid #822c68;
  margin-bottom: 30px;
  padding-left: 5px;
  font-weight: 700;
  width: 100%;
}
.open-moments-modal,
.submit-button-moments {
  color: #e3bfcc;
  background-color: #3898ec00;
  background-image: linear-gradient(0deg, #4e2266 1%, #e31e91);
  width: 100%;
  font-weight: 700;
  position: static;
  display: inline-block;
  padding: 9px 15px;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  margin: 16px;
  padding: 11px;
  border-radius: 24px;
  position: relative;
  animation: slideUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 2.6rem;
  cursor: pointer;
  line-height: 1;
  color: #fff;
}

.modal-content h3 {
  margin-bottom: 16px;
  text-align: center;
}

.modal-content .text-field {
  width: 100%;
  margin-bottom: 12px;
}

.checkbox-field {
  display: flex;
  gap: 10px;
  font-size: 12px;
  margin: 12px 0 16px;
}

.modal-content .submit-button-moments {
  width: 100%;
}

.success-message {
  text-align: center;
}

@media (max-width: 480px) {
  .modal-content {
    padding: 0.2rem;
    border-radius: 10px;
  }
}

/* toast  */
#successToast,
#errorToast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 10;
  max-width: 360px;
  width: 100%;
}

