
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f9fc;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
/* Only applies when inside login-layout */


.login-layout .login-box {
    border-radius: 15px;
    /*padding: 30px;*/
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: white;
    /*    max-width: 400px;
    margin: auto;*/
    margin-top: 5vh;
}

.login-layout input,
.login-layout select {
    border-radius: 6px;
    padding: 10px;
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
}

.login-layout button {
    border-radius: 6px;
    background-color: #0076A8;
    color: white;
    padding: 10px;
    margin-top: 20px;
    width: 100%;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

    .login-layout button:hover {
        background-color: #005f87;
    }


.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height:100vh;
}

.login-box {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    width: 350px;
    text-align: center;
    align-self:center;
}

.login-box h2 {
    margin-bottom: 20px;
    color: #0076A8;
}

.logo {
    height: 60px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    text-align: left;
    font-weight: 500;
    color: #002A3A;
}

input, select, .input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
}

button {
    padding: 12px;
    background-color: #0076A8;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #005f87;
}
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0076A8;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-item {
    cursor: pointer;
    font-weight: bold;
}

    .nav-item:hover {
        text-decoration: underline;
    }
