.signup-page {
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh;
  width: 100%;
}

.signup-page .banner {
  width: 55%;
  height: 100%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-bg {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  border-radius: 30px;
  padding: 40px;
}

.signup-cover {
  flex: 1;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #ccc; */
}

.signup {
  padding: 50px;
  border-radius: 20px;
  background-color: #fff;
  width: 70%;
}
.signup-title {
  margin-bottom: 30px;
  width: 80%;
}
.signup-title h4 {
  font-size: 35px;
  font-family: MontserratExtraBold;
  color: var(--dark-blue);
}
.signup-title p {
  color: gray;
  margin-right: 20px;
}
.form-control {
  font-family: Montserrat;
  font-weight: normal !important;
}

.signup-icon {
  position: absolute;
  top: 40px;
  left: 80px;
  width: 120px;
}

.signup-icon img {
  width: 100%;
  height: auto;
}

.form-group {
  margin-bottom: 30px;
}

.signup-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.signup-bottom a {
  font-weight: bolder;
}
.notify-issue {
  width: 100%;
  margin-bottom: 20px;
  padding: 15px;
}
.error-issue {
  background-color: #ffcece;
  color: red;
}
.success-issue {
  background-color: #ceffdc;
  color: rgb(0, 137, 9);
}

@media screen and (max-width: 1370px) {
  .signup {
    padding: 40px;
    width: 80%;
  }
}

@media screen and (max-width: 1201px) {
  .banner {
    width: 50% !important;
  }
}
@media screen and (max-width: 1020px) {
  .banner {
    width: 40% !important;
  }
}

@media screen and (max-width: 830px) {
  .banner {
    display: flex;
    justify-content: center;
    padding: 60px;
  }
  .signup-icon {
    position: relative;
    top: unset;
    left: unset;
  }
}

@media screen and (max-width: 770px) {
  .signup-page {
    flex-direction: column;
  }
  .banner {
    width: 100% !important;
    padding: 20px;
  }
  .signup-cover {
    height: unset;
  }
}
