body {
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.login-center {
  background-color: #fff;
  padding: 20px;
  width: 50%;
}
@media only screen and (max-width: 1000px) {
  .login-center {
    width: 100%;
    overflow-y: scroll;
  }
}

.forgot-password-center {
  background-color: #fff;
  padding: 20px;
  max-width: 400px;
}

@media only screen and (max-width: 1000px) {
  .forgot-password-center {
    width: 100%;
    overflow-y: scroll;
  }
}

.row > [class*='col-'] {
  margin-bottom: 0;
}

.center-logo {
  display: flex;
  justify-content: center;
}

.register-button {
  background: #c59a49;
}

.back-button {
  background: #002960;
}

.btn-group-register {
    border: 0;
    border-radius: 10px;
    color: #eee;
    display: block;
    float: left;
    font-family: Open Sans, sans-serif;
    font-size: 11px;
    font-weight: 100;
    font-weight: 400;
    opacity: 0.8;
    outline: none !important;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.3s ease, opacity 0.3s ease; /* Adjusted transition */
}

.btn-group-register:hover {
    transform: scale(1.05); /* Slightly increase size on hover */
    opacity: 1; /* Optional: make it fully opaque on hover */
}

.register-form {
  background: transparent !important;
}

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


