/*
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/Roboto-Regular.ttf') format('truetype');
}
*/

/*
@font-face {
    font-family: 'Roboto';
    font-style: bold;
    font-weight: 700;
    src: url('assets/fonts/Roboto-Bold.ttf') format('truetype');
}
*/

* {
    padding: 0;
    margin: 0;
}


body {
    width: 100%;
    height: 100vh;
    font-family: 'Roboto';
    background-color: white;
}

p {
    font-size: 14px;
    margin-left: 3%;
    margin-right: 3%;
}

h1 {
    color: #013168;
    font-size: 24px;
    font-weight: 600;
}

.centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#loginPage {
    position: fixed;
    top: 10%;
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

.loginBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    width: 23%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 8px;
    padding: 2.5%;
    padding-top: 3%;
    padding-bottom: 3%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.loginBox:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.loginBox h1 {
    margin-bottom: 10px;
}

.loginBox button {
    background-color: #2c539a;
    color: white;
    margin: 2.5%;
    border-radius: 6px;
    width: 75%;
    padding: 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.loginBox button:hover {
    background-color: #013168;
}

.loginBox button:active {
    transform: scale(0.98);
}

.loadingDiv {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: block;
    visibility: hidden;
}

#loadingGIF {
    width: 200px;
    height: 200px;
}

#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /*z-index: 50;*/
}

#mainHeader nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
}

.navLink {
    color: #013168;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.navLink:hover {
    background-color: #f5f5f5;
}

.navLink.active {
    background-color: #013168;
    color: white;
}