/*minimal css reset*/
html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}
/*end reset*/

body {
    background-color: black;
}

.login-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../Resources/HomePage-Online.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    height: 100vh;
    width: 100%;
}

.login-layout .modal {
    display: block;
}

.login-modal-basic {
    max-width: 300px;
}

.login-modal {
    background: black;
    min-height: 140px;
    width: auto;
    border-radius: 6px;
    color: white;
    display: flex;
    flex-direction: column;
    border: 1px solid white;
}

.login-notifications .login-modal {
    max-width: 650px;
}

.login-modal_title {
    background-color: rgb(58,99,136);
    display: flex;
    width: 100%;
    height: 30px;
    align-items: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: 1px solid white;
    padding: 0 10px;
    font-weight: bold;
}

.login-modal_link {
    color: white;
    text-decoration: underline;
    display: inline-block;
    text-align: center;
}

.login-modal_link:hover {
    color: rgb(180, 180, 180);
}

.login-modal_notifications {
    padding: 10px 20px;
}

.login-modal_notifications .notification {
    padding: 10px 0;
}

.login-modal_notifications .notification:first-child {
    padding-top: 0;
}

.login-modal_notifications .notification + .notification {
    border-top: 1px solid white;
}

.login-modal_actions {
    display: flex;
    justify-content: end;
}

.login-modal_actions form {
    margin-right: 15px;
    margin-bottom: 10px;
}

.btn {
    background-color: gray;
    padding: 6px 12px;
}

.btn:hover {
    background-color: darkgrey;
}

a.btn {
    color:white;
}

.login-form {
    border-bottom: 1px solid white;
    padding: 15px 40px 30px 40px;
}

.saml-form {
    padding: 15px 40px;
}

.errors {
    color: red;
    list-style-type: none;
    padding: 15px 40px 0;
}

.loader-dynamic-small {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #00000000;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}
