#kc-locale, #kc-header, .show-hide-password {
    display: none;
}

html, body, #body {
    width: 100%;
    height: 100%;
}

#body {
    min-height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
}

.login-page-background {
    background-image: url(../img/background.jpg);
    background-color: #cccccc;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: 100%;
}

.login-page-background.pl {
    background-image: url(../img/background-pl.jpg);
}

body {
    margin: 0;
    font-family: "Partex Marking", Arial;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: transparent;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}

.login-container {
    flex: 0 0 100%;
    max-width: 100%;
    background: white;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-left: 0;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .login-container {
        flex: 0 0 50%;
        max-width: 50%;
        margin-left: 25%;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
    
main {
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}


.login-container > div {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

img.small-logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.login-header {
    font-weight: 400;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
    line-height: 1.2;
}

.login-subheader {
    font-weight: 400;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-size: 1.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.forgot-password-link {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

.forgot-password-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.create-account-header {
    font-weight: 400;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-size: 1.5rem;
}

.btn-partex {
    font-family: "Partex Marking", Arial;
    cursor: pointer;
    background-color: #e20014;
    color: white;
    text-transform: uppercase;
    border-radius: 0;
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    border: 1px solid transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#kc-form-options .checkbox {
    margin-bottom: 1rem;
    box-sizing: border-box;
}

#kc-form-options .checkbox label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

#kc-form-options .checkbox label input {
    margin: 0;
}

label.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    display: inline-block;
}

input.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    overflow: visible;
    margin: 0;
    box-sizing: border-box;
}

input.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

input.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

span.field-validation-error{
    color: #dc3545;
}