html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: inherit;
}
*:before, *:after {
  box-sizing: inherit;
}

.authWrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F6F8FF;
}
.athonTitle {
  display: none;
  font-weight: bold;
  margin-bottom: 30px;
  color: #364752;
  font-family: 'Maven Pro', Lato, -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}
.recovery {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  font-family: 'Maven Pro', Lato, -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}
.recovery label {
  font-size: 12px;
  opacity: 0.5;
  padding-bottom: 10px;
  border-bottom: 1px solid #0000003b;
}
.recovery a:hover {
  color: #000;
  font-weight: 500!important;
  text-decoration: none;
  transition: 1s cubic-bezier(0.05, 0.38, 0.25, 1);
}
.login {
  text-align: center;
  width: 30%;
  height: 100vh;
  background: #FFF;
  padding: 70px;
}
.login a {
  margin-top: 25px;
  text-align: center;
}
.authField {
  position: relative;
}
.logoAuth {
  background-image: url(img/logo-color.svg);
  width: 100px;
  height: 100px;
  position: relative;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
  margin-top: 100px;
}
.scsErr {
  font-family: 'Maven Pro';
  font-size: 0.8rem;
  color: red;
}


.athonForm table{
  width: 100%;
}

.athonField b {
  text-align: left;
  font-size: 13px;
  font-weight: 400;
  margin-top: 10px;
  margin-left: 0px;
  display: block;
  color: #000;
}

.athonForm {
  margin-top: 0!important;
  padding: 0!important;
  border: 0!important;
  min-width: initial!important;
  max-width: initial!important;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-radius: 0;
  max-width: 500px!important;
}
.athonForm p{
  font-size: 12px;
  line-height: 14px;
}
.infoText {
  text-align: justify;
  color: #7e7e7e;
  display: block;
  position: relative;
}
.mtop20.authField {
  font-weight: 300;
  font-family: 'Maven Pro';
  text-align: left;
}
.addinfo-box {
  max-width: 70%;
}

.athonForm input[type=botton], .athonForm input[type=submit] {
  padding: initial!important;
  margin-bottom: initial!important;
  border: none!important;
  height: initial!important;
  box-shadow: none!important;
}

.athonForm input[type="submit"] {
  border: none;
  outline: none;
  margin: 24px 0 0 0;
  border-radius: 8px!important;
  color: var(--c, #fff);
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  position: relative;
  font-family: inherit;
  font-weight: 500;
  background: var(--b, var(--primary-dark));
  transition: color 0.3s, background 0.3s;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  height: 45px!important;
  display: block;
}
.athonForm input[type="submit"]:hover {
  opacity: 0.9;
  background: #008552!important;
}
.benchmark {
  display: none;
}
/** NEW AUTH PAGE **/
.authInput {
  position: relative;
}
.athonForm {
  --primary: #6D58FF;
  --primary-dark: #362A89;
  --dark: #2B3044;
  --grey-dark: #404660;
  --grey: #8A91B4;
  --grey-light: #A6ACCD;
  --light: #BBC1E1;
  --pale: #ECEFFC;
  --white: #FFFFFF;
  --red: #F04949;
  width: 100%;
  max-width: 180px;
}
.athonForm .authInput input[type=text], .athonForm .authInput input[type=password] {
  background: none;
  outline: none;
  border: none;
  color: var(--grey-dark);
  font-weight: 500;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.025em;
  line-height: 22px;
  caret-color: var(--primary);
  padding: 7px 0 5px 0;
  box-shadow: inset 0 -1px 0 0 var(--grey);
  border-radius: 0px;
  height: 34px;
  margin-bottom: 16px;
  font-family: 'Maven Pro', Lato, -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";

}

.authInput label{
  pointer-events: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  position: absolute;
  top: 8px;
  left: 0;
  transform-origin: 0 50%;
  transform: translateY(var(--label-y, 0)) scale(var(--label-scale, 1)) translateZ(0);
  transition: transform 0.3s, color 0.3s;
  color: var(--label-color, var(--grey-light));
}
.athonForm input:not(:-moz-placeholder-shown) + label {
  --label-y: -17px;
  --label-scale: .8;
  --label-color: var(--grey);
}
.athonForm input:not(:-ms-input-placeholder) + label {
  --label-y: -17px;
  --label-scale: .8;
  --label-color: var(--grey);
}
.athonForm input:not(:placeholder-shown) + label, .athonForm .input input:focus + label {
  --label-y: -17px;
  --label-scale: .8;
  --label-color: var(--grey);
}

