@font-face {
    font-family: 'Titillium Web';
    src: url("../../externals/fonts/titillium-web/TitilliumWeb-Regular.ttf") format('ttf');
}

body {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* optional: um das Bild beim Scrollen fixiert zu halten */
    background-position: top;
    font-family: 'Titillium Web', sans-serif;
    font-size: 19px;
    min-height: 400px;
}

html, body {
    height: 98%;
    width: 98%;
}

#container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 92%;
    width: 92%;
    overflow: hidden;
    padding-top: 100px;
}

#loginMask {
    height: 398px;
    width: 425px;
    background-color: rgba(0, 37, 64, 0.68);
    padding: 30px;
    border-radius: 7px; /* Ecken abrunden */
    color: white;
}

#infoBox {
    padding: 20px;
    border-color: white;
    border-radius: 7px;
    border-width: 1px;
    border-style: solid;
    color: white;
    float: left;
    max-width: 700px;
}

.urgentMessage {
    background-color: rgba(216, 0, 0, 0.72);
}
.notice {
    background-color: rgba(0, 156, 223, 0.72);
}
.importantMessage {
    background-color: rgba(216, 87, 0, 0.72);
}

input, select, option {
    font-family: 'Titillium Web', sans-serif;
}

select {
    padding-top: 6px;
}

.input {
    border: 2px solid white;
    border-radius: 7px;
    padding-left: 10px;
    font-size: 40px;
    min-height: 61px;
    background-color: transparent;
    color: white;
    width: 408px;
}

.actionButton {
    background-color: rgb(0, 178, 255, 0.5);
    border-radius: 7px;
    text-align: center;
    position: relative;
    font-size: 40px;
    min-height: 61px;
    top: -52px;
    left: -9px;
    width: 418px;
    border-width: 0;
    color: white;
}

.actionButton:hover {
    top: -63px;
    left: 1px;
    width: 420px;
    cursor: pointer;
}

#saveButton:hover {
    top: -52px;
    left: -9px;
    width: 418px;
    cursor: default;
}

.bottomLinks:hover {
    cursor: pointer;
}

input[type="text"]::placeholder, input[type="password"]::placeholder {
    color: #ffffff; /* Weiß */
    opacity: 1;
}

a {
    text-decoration-line: none;
    color: white;
}

.bottomLinks {
    position: relative;
    top: -42px;
}

/* Stil für das Modalfenster */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    border-radius: 7px;
    min-width: 425px;
}

#modal-message {
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#bottomRight {
    position: fixed;
    bottom: 0;
    right: 0;
    color: white;
}