
    body {
        background: #ebeeef;
    }

    .login-box {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .wrap-login {
        width: 40em;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

    .login-form-title {
        background-image: url("/static/pictures/otton-logo.png");
        z-index: 1;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        background-repeat: no-repeat;
        background-position: center;
        background-position-x: 10em;
        padding: 70px 15px 74px 15px;
    }

    .login-form-title::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(54, 84, 99, 0.27);
    }

    .login-form {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 2em 0em 5em 10em;
    }

    .login-form p input {
        border: 0;
        border-bottom: 1px solid #37474f;
        outline: 0;
        display: inline-block !important;
        margin-top: 0.7em;
        font-size: 1.2em;
        width: 100%;
    }

    .login-form p label {
        display: inline-block !important;
        margin-top: 1.5em;
        color: #37474f;
    }

    .login-button {
        margin: auto;
        color: #37474f;
        border-color: #37474f;
        min-width: 150px;
        max-width: 250px;
        padding: 1em 2em;
        border: none;
        background: none;
        position: relative;
        z-index: 1;
        -webkit-backface-visibility: hidden;
        border: 1px solid;
        cursor: pointer;
        transition: border-color 0.4s, color 0.4s;
        margin-top: 2em;
    }

    .login-button:hover {
        color: white;
        border-color: #37474f;
        background: #37474f;
    }

    .errorlist.nonfield {
        display: none;
    }

    .form-error {
        width: 20em;
        color: darkred;
    }

