@import url('https://rsms.me/inter/inter-ui.css');
::selection {
  background: #2D2F36;
}
::-webkit-selection {
  background: #2D2F36;
}
::-moz-selection {
  background: #2D2F36;
}
body {
  background: white;
  font-family: 'Inter UI', sans-serif;
  margin: 0;
}
.page {
  background: #e2e2e5;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: absolute;
  place-content: center;
  width: 100%;
  margin: 0;
}
@media (max-width: 767px) {
  .page {
    height: auto;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.container {
  display: flex;
  height: 30rem;
  margin: 0 auto;
  width: 60rem;
}
@media (max-width: 767px) {
  .container {
    flex-direction: column;
    height: 630px;
    width: 320px;
  }
}
.left {
  background: white;
  height: calc(100% - 40px);
  top: 20px;
  position: relative;
  width: 50%;
}
@media (max-width: 767px) {
  .left {
    height: 100%;
    left: 20px;
    width: calc(100% - 40px);
    max-height: 270px;
  }
}
.login {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #006892;
  margin: 3rem 40px 40px;
}
.login img{
    height: 1.5rem;
}
.eula {
  color: #006892;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  margin: 40px;
}
.eula .img-container{
    text-align: center;
    margin: 1rem;
}
.right {

  /* background: rgba( 0, 104, 146, 0.80 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 20.0px );
  -webkit-backdrop-filter: blur( 20.0px );
  border-radius: 4px; */
  
  background: #006892;
  box-shadow: 0px 0px 40px 16px rgba(0,0,0,0.22);
  color: #F1F1F2;
  position: relative;
  width: 50%;
}
@media (max-width: 767px) {
  .right {
    flex-shrink: 0;
    height: 100%;
    width: 100%;
    max-height: 350px;
  }
}
svg {
  position: absolute;
  width: 30rem;
}
path {
  fill: none;
  stroke: url(#linearGradient);;
  stroke-width: 4;
  stroke-dasharray: 240 1386;
}
.form {
  margin: 5rem;
  position: absolute;
}
label {
  color:  #FFF;
  display: block;
  font-size: 1.3rem;
  height: 16px;
  margin-top: 2rem;
  margin-bottom: 5px;
  font-weight: bold;
}
input {
  background: transparent;
  border: 0;
  color: #f2f2f2;
  font-size: 1.2rem;
  height: 2rem;
  line-height: 1.9rem;
  margin-top: 1rem;
  outline: none !important;
  width: 100%;
}
input::-moz-focus-inner { 
  border: 0; 
}
#submit {
  color: #FFF;
  margin-top: 4rem;
  font-weight: bold;
  font-size: 1.3rem;
  transition: color 300ms;
}
#submit:focus {
  color: #f2f2f2;
}
#submit:active {
  color: #d0d0d2;
}

.error{
  color: red;
  padding: 0.5rem 1rem;
  background-color: rgba(251, 191, 181, 0.849);
  border-radius: 4px;
}

.success{
  color: green;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  background-color: rgba(182, 238, 177, 0.849);
}