@font-face {
	font-display: swap;
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: url('/static/fonts/montserrat-v25-latin-regular.woff2') format('woff2');
  }

* {
    box-sizing: border-box;
    }
     
    *:focus {
    outline: none;
    }
    body {
    font-family: "Montserrat";
    background-color: #97CB76;
    padding: 50px;
    }
    .login {
    margin: 20px auto;
    width: 300px;
    }
    .login-screen {
    background-color: #FFF;
    padding: 20px;
    border-radius: 5px
    }
     
    .app-title {
    text-align: center;
    color: #777;
    }
     
    .login-form {
    text-align: center;
    }
    .control-group {
    margin-bottom: 10px;
    }

    .login-field {
        margin-bottom: 10px;
    }
     
    input {
    text-align: center;
    background-color: #ECF0F1;
    border: 2px solid transparent;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 200;
    padding: 10px 0;
    width: 250px;
    transition: border .5s;
    }
     
    input:focus {
    border: 2px solid #97CB76;
    box-shadow: none;
    }
     
    .btn {
    border: 2px solid transparent;
    background: #97CB76;
    color: #ffffff;
    font-size: 16px;
    line-height: 25px;
    padding: 10px 0;
    text-decoration: none;
    text-shadow: none;
    border-radius: 3px;
    box-shadow: none;
    transition: 0.25s;
    display: block;
    width: 250px;
    margin: 0 auto;
    }
     
    .btn:hover {
    background-color: #97CB76;
    }
     
    .login-link {
    font-size: 12px;
    color: #444;
    display: block;
    margin-top: 12px;
    }

    @media only screen and (max-width: 801px) {
      body {
        padding: 0px;
      }
    }

    .login_form_footer{
      margin-top: 30px;
      text-align: center;
      font-size: 0.8rem;
      color: #000000;
    }

    .login_form_footer a{
      color: #000000;
    }