:root,body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  --input-color: #EFEEEE;
}

.main h3 {
  /* font-variant: small-caps; */
  font-size: 2em;
  margin: 24px 0;
}

body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #222;
}

button {
  cursor: pointer;
}

.main {
  border-radius: 20px;
  background-color: #EFEEEE;
  width: 100%;
  max-width: 1000px;
  min-height: 500px;
  height: max-content;
  margin: auto;
  box-shadow: 0px 5px 10px rgba(0,0,0,.5);
  position: relative;
  overflow: hidden;
}

.corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
}

.corner.bottom {
  top: unset;
  left: unset;
  bottom:0;
  right:0;
  transform: rotate(180deg);
}

.content {
  padding: 60px 40px;
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
}

a {
  outline: none;
  text-decoration: none;
}

.split {
  padding: 20px 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.separator {
  border-left-width: 2px;
  border-left-style: solid;
  border-color: #AAA;
  height: 100%;
}

.side {
  padding: 0 50px;
  box-sizing: border-box;
}

.form-header {
  font-size: 1.4em;
  padding-bottom: 30px;
}

.form-body {
  text-align: right;
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 20px;
  column-gap: 20px;
  align-items: center;
}

form button:last-child {
  display: block;
  margin: 20px auto 0 auto;
}

input {
  border-radius: 18px;
  background: var(--input-color);
  -webkit-appearance: none;
  box-shadow: inset 5px 5px 9px #bfbebe,
            inset -5px -5px 9px #ffffff;
  -webkit-box-shadow: inset 5px 5px 9px #bfbebe,
            inset -5px -5px 9px #ffffff;
  border: none;
  padding: 12px 25px;
}

input:focus {
  outline: none;
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 
      inset 5px 5px 9px #88a7b6,
      inset -5px -5px 9px #ccfbff,
      inset 0 0 0 30px #aad1e4 !important;
}

label {
  color: #508ac8;
  white-space: nowrap;
  font-size: 1.2em;
}

button {
  color: white;
  background: #39699c;
  border: none;
  border-radius: 200px;
  padding: 12px 25px;
  margin-top: 30px;
  font-size: 1.2em;
}

.logo {
  height: 50%;
  max-height: 50vw;
  margin: 0 50px;
  width: auto;
}

.alert {
  color: red;
  margin: 0 50px;
}

.success {
  color: #508ac8;
}

/*# sourceMappingURL=style.css.map */

@media (max-width: 1000px) {
  body {
    justify-content: flex-start;
  }
  .main {
    height: 100%;
    border-radius: 0;
    min-height: unset;
  }
  .content {
    height: 100%;
    width: 100%;
  }
  .split {
    height: 100%;
  }
  .logo {
    margin: 0;
  }
}

@media (orientation: landscape) and (min-width: 751px) and (max-width: 1000px) {
  .logo {
    max-height: 30vw;
  }

  .content {
    padding: 0 40px;
  }

  .split {
    padding: 0 20px;
    column-gap: 50px;
  }

  .main h3 {
    margin-top: 0;
  }
}

@media ((orientation: portrait) or (max-width: 750px)) and (max-width: 1000px) {
  .split {
    padding: 0 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    align-items: flex-start;
  }

  .separator {
    border-left-width: 0;
    border-bottom-width: 0;
    border-top-width: 2px;
    border-top-style: solid;
  }

  .logo {
    width: 50%;
    max-width: 30vh;
    height: auto;
    max-height: unset;
    margin: auto;
  }
}

@media (orientation: portrait) and (max-width: 500px) {
  .form-body {
    display: flex;
    flex-direction: column;
    row-gap: 0;
  }
  label {
    margin-left: 20px;
    text-align: left;
    align-self: flex-start;
  }
  label:not(:first-child) {
    margin-top: 25px;
  }
  input {
    margin-top: 5px;
    align-self: stretch;
  }
  .logo {
    width: 75%;
  };
}

@media (max-width: 750px) and (max-height: 650px) {
  .logo {
    display: none;
  }
  .content {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .split {
    grid-template-rows: auto;
    height: max-content;
  }
}

@media (prefers-color-scheme: dark) {
  :root,body {
    color: white;
    background: rgb(239,238,238);
    background: radial-gradient(circle, rgba(239,238,238,1) 16%, rgba(171,170,170,1) 100%);
    --input-color: #222;
  }

  .main {
    color: white;
    background-color: #222;
  }

  .separator {
    border-color: #555;
  }

  a,a:visited {
    color: #EEF;
  }

  input {
    color: white;
    background: #222;
    -webkit-box-shadow: inset 5px 5px 10px #0e0e0e,
            inset -5px -5px 10px #363636;
    box-shadow: inset 5px 5px 10px #0e0e0e,
            inset -5px -5px 10px #363636;
  }

  .alert {
    color: #ff4744;
  }
}