.login-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  font-size: 16px;
  max-width: 500px;
  margin: 20px; }
  .login-page p {
    text-align: center; }
  .login-page .already-in {
    font-size: 20px; }
  .login-page .login-inner {
    margin-bottom: 20px; }
  .login-page .reset-inner {
    margin-bottom: 20px;
    justify-content: center; }
  .login-page .text-field {
    width: 100%;
    outline: none;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px; }
    .login-page .text-field:focus {
      border: 1px solid #4196ca; }
  .login-page button[type='submit'] {
    background: #3f3a5f;
    width: 100%;
    border-radius: 4px;
    color: white;
    padding: 10px;
    cursor: pointer;
    border: none;
    outline: none; }
