body {
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
}
body:after {
  content: "";
  position: fixed;
  inset: 0;
  background-color: #1a478b;
  width: 60%;
  height: 100vh;
  -webkit-clip-path: polygon(0 100%, 0 0, 100% 0, 70% 100%);
          clip-path: polygon(0 100%, 0 0, 100% 0, 70% 100%);
  z-index: -1;
}

.login-card {
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: 0 10px 50px -30px black;
  width: 600px;
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto auto;
}
.login-card a {
  text-decoration: none;
  color: #1a478b;
}
.login-card .column {
  padding: 4rem;
}
.login-card .form-element {
  width: 100%;
  border: none;
  background-color: white;
  padding: 20px 30px;
  font-size: 18px;
  border-radius: 50px;
  transition: box-shadow 0.2s;
}
.login-card .form-element:focus {
  outline: none;
  box-shadow: 0 0 0 px #1a478b;
}
.login-card .button {
  background-color: #1a478b;
  color: rgb(255, 255, 255);
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
  margin-top: 20px;
}
.login-card form {
  margin-top: 3rem;
}
.login-card form > * {
  margin-top: 1rem;
}/*# sourceMappingURL=loginstyle.css.map */