.auth-body{
  padding-top:0;
  min-height:100vh;
}
.auth-wrapper{
  display:flex;
  min-height:100vh;
}
.auth-side{
  flex:0 0 42%;
  background:linear-gradient(160deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
  position:relative;
  overflow:hidden;
}
.auth-side::before{
  content:"";
  position:absolute;
  width:400px; height:400px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  top:-120px; right:-120px;
}
.auth-form{
  flex:1;
  background:#fff;
}
.input-group-text{
  border-right:none;
}
.input-group .form-control{
  border-left:none;
}
.input-group .form-control:focus{
  box-shadow:none;
  border-color:#ced4da;
}
.input-group:focus-within .input-group-text,
.input-group:focus-within .form-control{
  border-color:var(--brand-green);
}
