@import url('colors.css');

.btn-theme {
  background-color: #eaf1ee !important;
  color: #222 !important;
}

#app {
  display: flex;
  min-height: 100vh;
  /* background-color: rgb(250, 248, 248); */
  align-items: center;
  justify-content: center;
  color: #fff;
  /* background-image: linear-gradient(#eaf1ee, #ebefee); */
}

#inner-box {
  /* width: 800px; */
  /* background-color: red; */
  /* background-image: linear-gradient( #8062de,#6b4bd4); */
  background-color: #eaf1ee;
  border-radius: 10px;
  box-shadow: 4px 5px 15px #55555578;

}

#RegisterForm,
#LoginForm {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Nunito;
  background: #fff;
  padding: 50px 20px;
  border-radius: 0px 10px 10px 0px;
  /* box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.171); */
  width: 100%;
  height: 100%;
  background-color: #20c997;
}

@media (max-width: 576px) {

  #RegisterForm,
  #LoginForm {
    border-radius: 10px;
  }
}