@import url('base.css');
@import url('layout.css');

html {
    height: 100%;
}
/* LOGIN FORM */
body.login {
    background-image: url("../img/loginbg.png");
    background-size: cover;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login #container {
    position: absolute;
    top: 20%;
    background: white;
    border: 1px solid #ccc;
    width: 20rem;
    min-width: 20rem;
    box-shadow: 0 3px 5px -1px rgba(0,0,0,0.2),0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12);
}

.login form {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
    justify-content: stretch;
}

.login form label {
    margin-top: 1rem;
}

.login form input {
    padding: 0.5rem;
}

.login .title {
    height: 25px;
    background: #169fe4;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    padding: 5px;
    text-align: center;
}

.login #messagebar {
    border-top: 1px solid #ccc;
    padding: 5px;
    background-color: #ffffc0;
}

.login .login-panel {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    padding-top: 0;
}

.login .entra-button {
    height: 41px;
    border: solid 1px #8c8c8c;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
    gap: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #5e5e5e;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.login-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}

.login-buttons input {
    width: 100%;
}
