body:has(#detail-register-main){
  background: #fffff1b8 !important;
}
.-non-header{
  margin-top: 0px !important;
}
.logo-header-2{
  object-fit: cover;
  height: auto;
  width: 100%;
  max-width: 200px;
}

#detail-register-main {
  width: 100%;
  height: 100%;
  min-height: calc(100dvh - 260px);
}
.form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 1rem;
}

.form .form-fields {
  width: 100%;
  padding: 0 1rem;
}



.form .form-heading {
  position: relative;
  width: 100%;
  text-align: center;
  padding-bottom: 0.5rem;
  color: #0057b7;
}


.form .submit-btn {
  text-transform: uppercase;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  width: 25%;
  background: #0057b7;
}

@media screen and (max-width: 567px) {
  #detail-register-main {
    width: 100%;
    height: 100%;
    min-height: calc(100dvh - 148px);
  }
  
}
@media screen and (max-width: 700px) {
  .form {
    width: 100%;
    max-width: 550px;
  }
  .form .submit-btn {
    width: 40%;
  }
  .form-fields .grid{
        grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media screen and (max-width: 568px) {
  .form {
    max-width: 420px;
  }
  .form .form-fields{
    padding: 0;
  }
}
@media screen and (max-width: 450px) {
  .form {
    max-width: 350px;
  }
}
@media screen and (max-width: 375px) {
  .form {
    max-width: 320px;
  }
}
@media screen and (max-width: 321px) {
  .form {
    max-width: 300px;
  }
}

.label-text{
  font-weight: 500;
};

/* handle error */
.form-control {
  position: relative;
}

.form-control .label.error-label {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
}

