.login-page {
    background-color: #f5f7fb;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.login-card {
    background: #fff;
    width: 380px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.login-title {
    text-align: center;
    margin-bottom: 5px;
    font-family: "MuseoModerno", sans-serif;
    font-size: 26px;
    font-weight: bold;
    color: #110de0;
}

.login-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 25px;
}

.form-control-input {
    height: 29px;
    border-radius: 6px;
    margin-left: 16px;
}

.btn-primary {
    background-color: #110de0;
    border-color: #110de0;
    height: 45px;
    font-size: 16px;
    border-radius: 6px;
}

.btn-primary:hover {
    background-color: #110de0;
    border-color: #110de0;
}

.login-options {
    margin-top: 10px;
    margin-bottom: 20px;
}

.forgot-password {
    text-align: right;
    padding-top: 5px;
}

.forgot-password a {
    color: #110de0;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    color: #6b7280;
}

.login-footer a {
    color: #110de0;
    font-weight: 500;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

.home-page {
    /* Ensures top and bottom nav bar always have space dedicated */
    padding-top: 70px;
    padding-bottom: 90px;
}

.navbar.affix {
    top: 0;
    width: 100%;
    left: 0; /* Ensures full width */
    right: 0; /* Ensures full width */
    z-index: 9999; /* Ensures it stays above other content */
}

#nav-bar-logo {
    text-align: center;
    font-family: "MuseoModerno", sans-serif;
    font-size: 40px;
    font-weight: bold;
    padding-top: 20px;
    margin-left: 5px;
    color: #110de0;
}

#nav-bar-actions {
    padding: 20px;
}

#nav-bar-start-button {
    margin-right: 5px;
    margin-bottom: 5px;
}


