html,
body {
    overflow: inherit;
    background-color: #f7f6f7;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f7f6f7;
    height: 100vh;
}

div.error {
    margin-bottom: 10px;
    color: #ff0000;
}

div.logo-container {
    text-align: center;
    padding: 10px;
    margin: 0 auto 3% auto;
    width: 25vw;
}

div.logo-container > img.andjaro-logo {
    max-width: 100%;
    width: 75%;
}

div.logo-container > img.tenant-logo {
    max-height: 100px;
    max-width: 100%;
}

div.form-container {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

/* desktop */
div.form-container {
    background-color: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    padding: 20px 40px 40px 40px;
    width: 50vw;
    margin-bottom: 5%;
}

div.form-container p {
    margin-bottom: 30px;
}

div.form-container form {
    margin-bottom: 20px;
}

div.form-container form.login input#password {
    height: 40px;
}

div.form-container form.login input#username {
    margin-bottom: 3%;
    height: 40px;
}

div.form-container form.login input[type='submit'] {
    background-color: #1cb18a;
    color: #ffffff;
    width: 100%;
    height: 42px;
}

div.form-container a.reset-your-password {
    color: #5a3954;
    font-size: 14px;
    text-decoration: underline;
}

div.form-container form.fos_user_resetting_request input#username {
    margin-bottom: 3%;
    height: 40px;
}

div.form-container form.fos_user_resetting_request input[type='submit'] {
    background-color: #1cb18a;
    color: #ffffff;
    width: 100%;
    height: 42px;
}

div.form-container form[name='fos_user_resetting_form'] input[type='password'] {
    margin-bottom: 3%;
    height: 40px;
}

div.form-container form[name='fos_user_resetting_form'] input[type='submit'] {
    background-color: #1cb18a;
    color: #ffffff;
    width: 100%;
    margin-top: 10px;
    height: 42px;
}

div.enabled-authentication-protocols {
    margin-top: 20px;
}

div.enabled-authentication-protocols button.authentication-protocol-button {
    height: 42px;
    width: 100%;
    margin-bottom: 20px;
}

div.form-container a.return-login-page {
    color: #5a3954;
    font-size: 12px;
    text-decoration: underline;
}

div.flexdiv {
    display:flex;
    justify-content: space-between;
    align-items: center;
}

div.inline-icon {
    position:relative;
    background:#ddd;
}
input.inline-icon{
    margin:0;
    padding-right: 30px;
    width: 100%;
}
i.inline-icon{
    font-size: x-large;
    position:absolute;
    bottom:7px;
    right:12px;
    width:24px;
    height:24px;
}
.alert-border {
    border: 1.5px solid red;
}

/* Style for medium devices 768px and up */
@media (max-width: 768px) {
    div.logo-container {
        width: 35vw;
    }

    div.form-container {
        width: 65vw;
        margin-bottom: 9%;
    }

    div.form-container h3 {
        margin-bottom: 20px;
    }
}

/* Style for small devices 576px and up */
@media (max-width: 576px) {
    div.logo-container {
        margin: 8% auto 8% auto;
        width: 45vw;
    }

    div.form-container {
        width: 85vw;
        margin-bottom: 9%;
    }

    div.form-container h3 {
        margin-top: 10px;
    }
}
