body {
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  body {
    justify-content: center;
  }
}

.welcome_title {
  font-weight: bold;
  font-size: large;
  text-align: center;
  color: black;
}

.login-form {
  background-color: #fff;
}

.section-wrapper {
  display: flex;
  align-items: center;
  margin-top: 1rem !important;
}
@media (min-width: 768px) {
  .section-wrapper {
    margin: 0 !important;
  }
}
.section-wrapper .section-title h1 {
  color: #b88d36;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 768px) {
  .section-wrapper .section-title h1 {
    font-size: 3.5rem;
    text-align: start;
  }
}
.section-wrapper .section-title span {
  color: white;
}

@media (min-width: 768px) {
  .login .login-wrapper {
    display: flex;
  }
}
.login .login-body-form {
  display: flex;
  justify-content: end;
}
@media (max-width: 600px) {
  .login .login-body-form {
    justify-content: center;
  }
}
.login .login-center {
  background-color: #fff;
  padding: 30px;
  max-width: 400px;
  width: 380px;
  border-radius: 20px;
}
.login .login-center .forgot_register {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.login .login-center .forgot_register .forgot_cap {
  color: #b4b4b4;
}
.login .login-center .forgot_register .register_cap {
  color: #033572;
  font-weight: 500;
}
.login .login-center .signin-button {
  background: #c59a49;
  border-radius: 15px;
  height: 4rem;
  color: white;
  font-weight: 500;
  font-size: 15px;
}
