@font-face {
    font-family: "VWfont";
    src: url("files/VWAGTheSans_Regular.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "VWfont", Arial, Helvetica, sans-serif !important;
    color: black;
}

body {
    min-height: 100vh;
    background-color: #F0F1F2;
}

.alert {
    position: fixed;
    top: 10rem;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    min-width: 300px;
    z-index: 200;
}

.bg-body-vw {
    background-color: #282828;
    border: none;
    border-radius: 2px;
    box-shadow: 0px 2px 4px 1px rgba(0,0,0,0.24);
}

.loginContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.loginForm {
    display: flex;
    justify-content: center;
    width: 400px;
    background-color: white;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 8px 1px rgba(0,0,0,0.24);
    padding: 50px;
}

.loginForm form {
    width: 100%;
    text-align: center;
}

.graphForm {
    padding: 50px;
    border-radius: 15px;
    max-width: 550px;
    background-color: #282C2D;
}

select option {
    color: black;
}

.fixCharts {
    height: 400px;
}

.form-floating {
    max-width: 500px;
}

.chartPrintBtn {
    position: absolute;
    padding: 10px;
    cursor: pointer;
}