html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
  font-size: 14px;
}
form {
  margin: 0;
  padding: 0;
}
@media (min-width: 1000px) {
  .page {
    left: calc((100vw - 1000px) / 2);
  }
}
.page {
  position: relative;
  margin: 20px 0;
  width: 100%;
  max-width: 1000px;
  min-height: 100%;
  background-color: white;
  border-radius: 25px;
  padding: 0 25px;
}
.fxy {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cx {
  left: 50%;
  transform: translateX(-50%);
}
.cy {
  top: 50%;
  transform: translateY(-50%);
}
.cxy {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  font-weight: 900;
}
p,
ol,
ul {
  margin-top: 0;
}
ol,
ul {
  padding: 0;
  list-style: none;
}
.custom-scroll {
  scrollbar-width: thin;
  scrollbar-color: #EFCB84 #6A2DA7;
}
.custom-scroll::-webkit-scrollbar {
  width: 5px;
  margin-right: 5px;
}
.custom-scroll::-webkit-scrollbar-track-piece {
  background: #6A2DA7;
  border-radius: 5px;
  border: 0;
}
.custom-scroll::-webkit-scrollbar-track {
  background: #9648f9;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(0deg, #EFCB84 0%, #DEA943 100%);
  border-radius: 5px;
  border: 0;
}
.login-register-form {
  position: fixed;
  display: flex;
  flex-flow: column nowrap;
  margin: auto;
  padding: 25px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  font-size: 120%;
  font-family: IrisWeb;
  letter-spacing: 1px;
}
.login-register-form form > div {
  display: flex;
  justify-content: center;
  padding: 5px 7px;
}
.login-register-form form > div input:not([type="checkbox"]) {
  margin-left: 10px;
}
.login-register-form form > div input[type="checkbox"] {
  margin-right: 10px;
}
.login-register-form label {
  display: inline-block;
  min-width: 100px;
  text-align: right;
}
.login-register-form a {
  text-decoration: none;
}
.login-register-form button {
  width: 200px;
  margin-top: 25px;
}
.login-register-form .register {
  width: 200px;
  box-sizing: border-box;
}
.login-register-form .error-message {
  text-align: center;
  color: #ac1515;
  font-weight: 700;
}
.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 700;
  font-family: IrisWeb;
  font-size: 120%;
  text-shadow: 1px 1px #0c7073;
  padding: 8px 25px;
  letter-spacing: 1px;
  border: solid 1px #18a4a8;
  border-radius: 5px;
  background-color: #15b7bc;
  box-shadow: 0 5px 6px #00000030;
  cursor: pointer;
  user-select: none;
  flex: 0 0 auto;
}
.btn:hover {
  border: solid 1px #198e93;
  background-color: #15c1c6;
}
.btn:active {
  transform: scale(0.98);
  background-color: #14abaf;
}
