*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background-color: #fff;
  /* overflow: hidden; */
}

.form{
  font-size: 1rem;
}

.form-label {
  margin-bottom: 0rem;
}

#maincontent{
  height: 0;
}

.wrapper{
  display: flex;
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
}

.first__container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 5rem;
}

.form__container{
  width: 420px;
  /* min-width: 300px; */
}

.form__select,
.form__control{
  width: 100%;
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  transition: .3s ease-in-out;
  padding-left: 2.5rem;
}

.form__select{
  cursor: pointer;
}

.form__select:focus,
.form__control:focus{
  /* border-color: #919191; */
  border-color: #D4A80B;
  transition: .3s ease-in-out;
  outline: 0;
}

.form__control::placeholder{
  color:#9b9b9b;
}

.form__select,
.form__select option,
.form__control{
  color: #505050;
}

.form__select option{
  border-radius: 3px;
}

.form__select:has(option[value=""]:checked){
  color:#9b9b9b;
}

.form__title,
.form p{
  color: #65676e;
}

.input__container{
  position: relative;
}

.input__icon {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #65676e;
    font-size: 1rem;
    z-index: 10;
}

.form__btn{
  width: 100%;
  padding: 12px 15px;
  border-radius: 5px;
  border: none;
  color: #fff;
  font-weight: 600;
  background-color: #076d39;
  transition: .3s ease-in-out;
}

.form__btn:hover{
  background-color: #05582e;
  transition: .3s ease-in-out;
}


.second__container{
  display: flex;
  position: relative;
  background-color: royalblue;
  padding: 0;
}

.image__img{
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: right;
}

.auth-background-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    background: #0000001a;
}

.auth-background-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 11;
}

.info{
  display: flex;
  flex-direction: column-reverse;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 2rem;
  z-index: 12;
}

.info__content{
  width: 100%;
  border-radius: 5px;
  font-size: 1rem;
  /* background: #1e1f21cc; */
  background: #05582ecc;
  color: #fff;
  padding: 2rem;
}

.info__content a{
  color:#fff;
  text-decoration: underline;
  transition: .3s ease-in-out;
}

.info__content a,
.info__content p,
.info__content i{
  font-size: 1rem;
}

.info__content h5{
  font-size: 1rem;
  font-weight: 600;
}

.info__content h2{
  font-size: 1.2rem;
  font-weight: 600;
}

.info__content a:active,
.info__content a:focus{
  background-color: transparent;
  color: #fff;
  outline: 1px dashed #fff;
  box-shadow: none;
  text-decoration: none;
}

.info__content a:hover{
  color: #D4A80B;
  transition: .3s ease-in-out;
}

.instructions{
  display: flex;
  margin-top: 1.2rem;
}


.btn-icon{
  visibility: hidden;
}

@media(max-width:990px){

  .form__container{
    max-width: 420px;
  }
  .wrapper{
    flex-direction: column;
  }

  .second__container{
    width: 100%;
    min-height: 100%;
  }

  .info{
    flex-direction: column;

  }
}

@media(max-width:450px){

  .form__container{
    max-width: 300px;
  }
}