* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    background: linear-gradient(to right,#3a7bd5,#3a6073);
    font-family: "Raleway",sans-serif;
}
.login{
    position: absolute;
    top: 0%;
    left: 80%;
}
.login button{
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    background: #f5f5f5;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
}
.popup{
    position: absolute;
    top: -150%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%,-50%) scale(1.25);
    width: 380px;
    padding: 20px;
    background: #fff;
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0,15);
    border-radius: 10px;
    transition: top 0ms ease-in-out 200ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popup.active{
    top: 50%;
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popup.activeError{
    top: 50%;
    opacity: 1;
    background-color: red;
    transform: translate(-50%,-50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popup .closeButton{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: #888;
    color: #eee;
    text-align: center;
    line-height: 15px;
    border-radius: 15px;
    cursor: pointer;
}
.popup .form h2{
    text-align: center;
    color: #222;
    margin: 10px 0px 20px;
    font-size: 25px;
}
.popup .form .form-element{
    margin: 15px 0px;
}
.popup .form .form-element label{
    font-size: 14px;
    color: #222;
}
.popup .form .form-element input[type="text"],
.popup .form .form-element input[type="password"]{
    margin-top: 5px;
    display: block;
    width: 100%;
    padding: 10px;
    outline: none;
    border: 1px solid #aaa;
    border-radius: 5px;
}
.popup .form .form-element button{
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-size: 16px;
    background: #222;
    color: #f5f5f5;
    border-radius: 10px;
    cursor: pointer;
}
.popup .form .form-element a{
    display: block;
    text-align: right;
    font-size: 15px;
    color: #1a79ca;
    text-decoration: none;
    font-weight: 600;
}
.popup .form .errorLogin{
    display: block;
    text-align: left;
    font-size: 15px;
    color: #ca1a1a;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
}
.popup .form .errorLogin.active{
    opacity: 1;
}


.webauthnLogin{
    position: absolute;
    top: 0%;
    left: 90%;
}
.webauthnLogin button{
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    background: #f5f5f5;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
}
.popupWebauthn{
    position: absolute;
    top: -150%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%,-50%) scale(1.25);
    width: 380px;
    padding: 20px;
    background: #fff;
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0,15);
    border-radius: 10px;
    transition: top 0ms ease-in-out 200ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popupWebauthn.active{
    top: 50%;
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popupWebauthn.activeError{
    top: 50%;
    opacity: 1;
    background-color: red;
    transform: translate(-50%,-50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popupWebauthn .closeButton{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: #888;
    color: #eee;
    text-align: center;
    line-height: 15px;
    border-radius: 15px;
    cursor: pointer;
}
.popupWebauthn .form h2{
    text-align: center;
    color: #222;
    margin: 10px 0px 20px;
    font-size: 25px;
}
.popupWebauthn .form .form-element{
    margin: 15px 0px;
}
.popupWebauthn .form .form-element label{
    font-size: 14px;
    color: #222;
}
.popupWebauthn .form .form-element input[type="text"],
.popup .form .form-element input[type="password"]{
    margin-top: 5px;
    display: block;
    width: 100%;
    padding: 10px;
    outline: none;
    border: 1px solid #aaa;
    border-radius: 5px;
}
.popupWebauthn .form .form-element button{
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-size: 16px;
    background: #222;
    color: #f5f5f5;
    border-radius: 10px;
    cursor: pointer;
}
.popupWebauthn .form .form-element a{
    display: block;
    text-align: right;
    font-size: 15px;
    color: #1a79ca;
    text-decoration: none;
    font-weight: 600;
}
.popupWebauthn .form .errorWebauthnLogin{
    display: block;
    text-align: left;
    font-size: 15px;
    color: #ca1a1a;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
}
.popupWebauthn .form .errorWebauthnLogin.active{
    opacity: 1;
}


.signup{
    position: absolute;
    top: 0%;
    left: 110%;
}
.signup button{
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    opacity: 1;
    color: #222;
    background: #f5f5f5;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
}
.signup button.inactive{
    top: -150%;
    opacity: 0;
}
.popupSignup{
    position: absolute;
    top: -150%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%,-50%) scale(1.25);
    width: 380px;
    padding: 20px;
    background: #fff;
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0,15);
    border-radius: 10px;
    transition: top 0ms ease-in-out 200ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popupSignup.active{
    top: 50%;
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popupSignup.activeError{
    top: 50%;
    opacity: 1;
    background-color: red;
    transform: translate(-50%,-50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popupSignup .closeButtonSignup{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: #888;
    color: #eee;
    text-align: center;
    line-height: 15px;
    border-radius: 15px;
    cursor: pointer;
}
.popupSignup .form h2{
    text-align: center;
    color: #222;
    margin: 10px 0px 20px;
    font-size: 25px;
}
.popupSignup .form .form-element{
    margin: 15px 0px;
}
.popupSignup .form .form-element label{
    font-size: 14px;
    color: #222;
}
.popupSignup .form .form-element input[type="text"],
.popupSignup .form .form-element input[type="password"]{
    margin-top: 5px;
    display: block;
    width: 100%;
    padding: 10px;
    outline: none;
    border: 1px solid #aaa;
    border-radius: 5px;
}
.popupSignup .form .form-element button{
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-size: 16px;
    background: #222;
    color: #f5f5f5;
    border-radius: 10px;
    cursor: pointer;
}
.popupSignup .form .form-element a{
    display: block;
    text-align: right;
    font-size: 15px;
    color: #1a79ca;
    text-decoration: none;
    font-weight: 600;
}
.popupSignup .form .errorSignup{
    display: block;
    text-align: left;
    font-size: 15px;
    color: #ca1a1a;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
}
.popupSignup .form .errorSignup.active{
    opacity: 1;
}




.reqSignup{
    position: absolute;
    top: 0%;
    left: 60%;
}
.reqSignup button{
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    opacity: 1;
    color: #222;
    background: #f5f5f5;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
}
.reqSignup button.inactive{
    top: -150%;
    opacity: 0;
}
.popupReqSignup{
    position: absolute;
    top: -150%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%,-50%) scale(1.25);
    width: 380px;
    padding: 20px;
    background: #fff;
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0,15);
    border-radius: 10px;
    transition: top 0ms ease-in-out 200ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popupReqSignup.active{
    top: 50%;
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popupReqSignup.activeError{
    top: 50%;
    opacity: 1;
    background-color: red;
    transform: translate(-50%,-50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popupReqSignup .closeButtonReqSignup{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: #888;
    color: #eee;
    text-align: center;
    line-height: 15px;
    border-radius: 15px;
    cursor: pointer;
}
.popupReqSignup .form h2{
    text-align: center;
    color: #222;
    margin: 10px 0px 20px;
    font-size: 25px;
}
.popupReqSignup .form .form-element{
    margin: 15px 0px;
}
.popupReqSignup .form .form-element label{
    font-size: 14px;
    color: #222;
}
.popupReqSignup .form .form-element input[type="text"],
.popupReqSignup .form .form-element input[type="password"]{
    margin-top: 5px;
    display: block;
    width: 100%;
    padding: 10px;
    outline: none;
    border: 1px solid #aaa;
    border-radius: 5px;
}
.popupReqSignup .form .form-element button{
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-size: 16px;
    background: #222;
    color: #f5f5f5;
    border-radius: 10px;
    cursor: pointer;
}
.popupReqSignup .form .form-element a{
    display: block;
    text-align: right;
    font-size: 15px;
    color: #1a79ca;
    text-decoration: none;
    font-weight: 600;
}
.popupReqSignup .form .errorReqSignup{
    display: block;
    text-align: left;
    font-size: 15px;
    color: #ca1a1a;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
}
.popupReqSignup .form .errorReqSignup.active{
    opacity: 1;
}

.popupReqReset{
    position: absolute;
    top: -150%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%,-50%) scale(1.25);
    width: 380px;
    padding: 20px;
    background: #fff;
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0,15);
    border-radius: 10px;
    transition: top 0ms ease-in-out 200ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popupReqReset.active{
    top: 50%;
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popupReqReset.activeError{
    top: 50%;
    opacity: 1;
    background-color: red;
    transform: translate(-50%,-50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popupReqReset .closeButtonReqReset{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: #888;
    color: #eee;
    text-align: center;
    line-height: 15px;
    border-radius: 15px;
    cursor: pointer;
}
.popupReqReset .form h2{
    text-align: center;
    color: #222;
    margin: 10px 0px 20px;
    font-size: 25px;
}
.popupReqReset .form .form-element{
    margin: 15px 0px;
}
.popupReqReset .form .form-element label{
    font-size: 14px;
    color: #222;
}
.popupReqReset .form .form-element input[type="text"],
.popupReqReset .form .form-element input[type="password"]{
    margin-top: 5px;
    display: block;
    width: 100%;
    padding: 10px;
    outline: none;
    border: 1px solid #aaa;
    border-radius: 5px;
}
.popupReqReset .form .form-element button{
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-size: 16px;
    background: #222;
    color: #f5f5f5;
    border-radius: 10px;
    cursor: pointer;
}
.popupReqReset .form .form-element a{
    display: block;
    text-align: right;
    font-size: 15px;
    color: #1a79ca;
    text-decoration: none;
    font-weight: 600;
}
.popupReqReset .form .errorReqReset{
    display: block;
    text-align: left;
    font-size: 15px;
    color: #ca1a1a;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
}
.popupReqReset .form .errorReqReset.active{
    opacity: 1;
}

.popupReset{
    position: absolute;
    top: -150%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%,-50%) scale(1.25);
    width: 380px;
    padding: 20px;
    background: #fff;
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0,15);
    border-radius: 10px;
    transition: top 0ms ease-in-out 200ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popupReset.active{
    top: 50%;
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popupReset.activeError{
    top: 50%;
    opacity: 1;
    background-color: red;
    transform: translate(-50%,-50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popupReset .closeButtonReset{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: #888;
    color: #eee;
    text-align: center;
    line-height: 15px;
    border-radius: 15px;
    cursor: pointer;
}
.popupReset .form h2{
    text-align: center;
    color: #222;
    margin: 10px 0px 20px;
    font-size: 25px;
}
.popupReset .form .form-element{
    margin: 15px 0px;
}
.popupReset .form .form-element label{
    font-size: 14px;
    color: #222;
}
.popupReset .form .form-element input[type="text"],
.popupReset .form .form-element input[type="password"]{
    margin-top: 5px;
    display: block;
    width: 100%;
    padding: 10px;
    outline: none;
    border: 1px solid #aaa;
    border-radius: 5px;
}
.popupReset .form .form-element button{
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-size: 16px;
    background: #222;
    color: #f5f5f5;
    border-radius: 10px;
    cursor: pointer;
}
.popupReset .form .form-element a{
    display: block;
    text-align: right;
    font-size: 15px;
    color: #1a79ca;
    text-decoration: none;
    font-weight: 600;
}
.popupReset .form .errorReset{
    display: block;
    text-align: left;
    font-size: 15px;
    color: #ca1a1a;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
}
.popupReset .form .errorReset.active{
    opacity: 1;
}
.popupTryagain{
  position: absolute;
  top: -150%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%,-50%) scale(1.25);
  width: 380px;
  padding: 20px;
  background: #fff;
  box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0,15);
  border-radius: 10px;
  transition: top 0ms ease-in-out 200ms,
              opacity 200ms ease-in-out 0ms,
              transform 200ms ease-in-out 0ms;
}
.popupTryagain.active{
  top: 50%;
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
  transition: top 0ms ease-in-out 0ms,
              opacity 200ms ease-in-out 0ms,
              transform 200ms ease-in-out 0ms;
}
.popupTryagain.activeError{
  top: 50%;
  opacity: 1;
  background-color: red;
  transform: translate(-50%,-50%) scale(1);
  transition: top 0ms ease-in-out 0ms,
              opacity 200ms ease-in-out 0ms,
              transform 200ms ease-in-out 0ms;
}
.popupTryagain .closeButtonTryagain{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  background: #888;
  color: #eee;
  text-align: center;
  line-height: 15px;
  border-radius: 15px;
  cursor: pointer;
}
.popupTryagain .form h2{
  text-align: center;
  color: #222;
  margin: 10px 0px 20px;
  font-size: 25px;
}
.popupTryagain .form .form-element{
  margin: 15px 0px;
}
.popupTryagain .form .form-element label{
  font-size: 14px;
  color: #222;
}
.popupTryagain .form .form-element input[type="text"],
.popupTryagain .form .form-element input[type="password"]{
  margin-top: 5px;
  display: block;
  width: 100%;
  padding: 10px;
  outline: none;
  border: 1px solid #aaa;
  border-radius: 5px;
}
.popupTryagain .form .form-element button{
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  font-size: 16px;
  background: #222;
  color: #f5f5f5;
  border-radius: 10px;
  cursor: pointer;
}
.popupTryagain .form .form-element a{
  display: block;
  text-align: right;
  font-size: 15px;
  color: #1a79ca;
  text-decoration: none;
  font-weight: 600;
}
.popupTryagain .form .errorTryagain{
  display: block;
  text-align: left;
  font-size: 15px;
  color: #ca1a1a;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
}
.popupTryagain .form .errorTryagain.active{
  opacity: 1;
}

.openSettingsButton {
  top: -150%;
  opacity: 0;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  background: #f5f5f5;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
}
.openSettingsButton.active{
  margin-top: 20px;
  opacity: 1;
}
.settings {
  position: absolute;
  top: -150%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%,-50%) scale(1.25);
  width: 380px;
  padding: 20px;
  background: #fff;
  box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0,15);
  border-radius: 10px;
  transition: top 0ms ease-in-out 200ms,
              opacity 200ms ease-in-out 0ms,
              transform 200ms ease-in-out 0ms;
}

.settings.active {
  top: 50%;
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
  transition: top 0ms ease-in-out 0ms,
              opacity 200ms ease-in-out 0ms,
              transform 200ms ease-in-out 0ms;
}

.settings .closeButtonSettings {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  background: #888;
  color: #eee;
  text-align: center;
  line-height: 15px;
  border-radius: 15px;
  cursor: pointer;
}

.settings .form h2 {
  text-align: center;
  color: #222;
  margin: 10px 0px 20px;
  font-size: 25px;
}

.settings .form .form-element {
  margin: 15px 0px;
}

.settings .form .form-element label {
  font-size: 14px;
  color: #222;
}

.settings .form .form-element input[type="color"] {
  margin-top: 5px;
  display: block;
  width: 100%;
  padding: 10px;
  outline: none;
  border: 1px solid #aaa;
  border-radius: 5px;
}

.settings .form .form-element button {
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  font-size: 16px;
  background: #222;
  color: #f5f5f5;
  border-radius: 10px;
  cursor: pointer;
}

.settings .form .form-element a {
  display: block;
  text-align: right;
  font-size: 15px;
  color: #1a79ca;
  text-decoration: none;
  font-weight: 600;
}

.settings .form .errorSettings {
  display: block;
  text-align: left;
  font-size: 15px;
  color: #ca1a1a;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
}

.settings .form .errorSettings.active {
  opacity: 1;
}
