/* Login page layout fixes for ASP.NET MVC */
body.form {
    background: #f1f2f3;
    font-family: 'Nunito', sans-serif;
}

.form-container.outer {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
}

.form-container.outer .form-form {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.form-container.outer .form-form-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    height: auto;
    width: 100%;
}

.form-container.outer .form-form .form-container {
    width: 100%;
}

.form-container.outer .form-content .org-logo {
    max-height: 70px;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 20px;
}

.form-form .form-form-wrap form .field-wrapper input.form-control {
    background-color: #fff;
    border: 1px solid #e0e6ed;
    box-shadow: none;
    height: auto;
}

.form-form .form-form-wrap form .field-wrapper input.form-control:focus {
    border-color: #1b55e2;
    box-shadow: none;
}

.form-form .form-form-wrap form .field-wrapper button.btn-primary {
    background-color: #1b55e2;
    border-color: #1b55e2;
    width: 100%;
    margin-top: 10px;
}

.login-error {
    color: #e7515a;
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
}

.login-footer-text {
    font-size: 13px;
    color: #888ea8;
    margin-top: 20px;
    text-align: center;
}

.login-footer-text a {
    color: #1b55e2;
}
