body {
    background-color: white;
    font-size: 12px;
    background-color: #eee;
    font-family: 'Lato', sans-serif;
}

a {
    color: var(--slate);
    text-decoration: none;
}

.central {
    position: absolute;
    top: 25%;
    left: 50%;
    width: 400px;
    margin-left: -200px;
    border: 2px solid #cfcfcf;
    border-radius: 6px;
    padding: 15px;
    background-color: #FFF;
}
h1 {
    font-size: 54px;
    text-align: center;
    margin-bottom: 2px;
    text-align: center;
}
h2 {
    font-size: 170%;
    margin-top: 0px;
    text-align: center;
}
h2.login {
  text-align: left;
}
.container {
    border: 2px solid white;
    padding: 10px;
}
.error {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
}
input[type=text], input[type=password] { 
    background-color: white;
    margin-bottom: 15px;
    width: 375px;
    border: 2px solid #336;
    height: 25px;
    border-radius: 6px;
}
#lgn_right {
    text-align: right;
}
input[type=submit] {
    border: 2px solid #222222;
    border-radius: 6px;
    position: relative;
    padding: 2px 5px;
    left: 4px;
}
input:focus {
    box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.2), -4px -4px 8px 1px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 900px) {
    .central {
        top: 10%;
        width: 90%;
        margin-left: 0px;
        left: 2px;
    }
    input[type=text], input[type=password] {  
        width: 100%;
    }
}
a#forgot {
    position: absolute;
    bottom: 30px;
}

.solid-button {
  appearance: none;
  background-color: white;
  border: 2px solid #cfcfcf;
  border-radius: 4px;
  box-sizing: border-box;
  color: #222222;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 60px;
  min-width: 0;
  outline: none;
  padding: 10px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
  will-change: transform;
}

.solid-button.small {
  padding: 8px 12px;
  width: auto;
  min-height: 32px;
}

.solid-button.large {
  padding: 10px 24px;
}

.solid-button:disabled {
  pointer-events: none;
}

.solid-button:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.solid-button:active {
  box-shadow: none;
  transform: translateY(0);
}

.buttonsOuter {
    text-align: center;
    margin: 0 auto;
    max-width: 60%;
}
.buttonsInner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
