* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pageContainer {
  max-width: 100vw;
  min-height: 100vh;
  padding-top: 4%;
  background: #1c1c1c;
}
.toastify {
    background-color: #4CAF50; /* Green background for success */
    color: #fff; /* White text color */
    font-family: Arial, sans-serif;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width:50%;
}
.pageContainer .logoContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.pageContainer .logoContainer img {
  width: 13%;
  height: 8%;
}

.contanContainer {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
}
.imgContainer {
  width: 60%;
  height: 400px;
}
.imgMobile {
  display: none;
}
.imgContainer img {
  width: 100%;
  height: 100%;
}

.formContainer {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 10px;
  border-radius: 15px;
  background: #000;
  box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 30px;
  min-width: 400px;
}
.pagePrivacy {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: antiquewhite;
}
.formContainer div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
    .formContainer div > label {
        color: #dbdbdb;
        text-transform: capitalize;
    }
.formContainer div > input {
  border-radius: 8px;
  height: 35px;
  width: 100%;
  border: 1px solid #3f3f3f;
  background-color: transparent;
  color: #ffdf00;
  font-size: small;
  padding: 0 15px;
}
.formContainer div > input:focus,
.formContainer div > textarea:focus {
  outline: none;
  border: 1px solid #fbea74;
}
.formContainer div > textarea {
  border-radius: 8px;
  height: 100px;
  width: 100%;
  border: 1px solid #3f3f3f;
  background-color: transparent;
  color: #ffdf00;
  padding: 10px 15px;
}
.formContainer button {
  padding: 10px 15px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(91deg, #ffdf00 0.22%, #fbea74 100%);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.InputGroup {
    display: flex;
     flex-direction: row !important; 
    gap: 10px;
}

.InputLbl {
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 900px) {
  .imgMobile {
    display: block;
    width: 100%;
    height: 350px;
  }
  .imgMobile img {
    width: 100%;
    height: 100%;
  }
  .imgContainer {
    display: none;
  }
  .contanContainer {
    flex-direction: column;
  }
  .formContainer {
    width: 70vw;
    margin: auto;
    min-width: auto;
  }
}
