

/****************************************************
   BASE STYLES
****************************************************/
* {
    font-family: 'Montserrat', sans-serif;
}

.page-container {
    padding-top: 140px; /* fixes overlap under fixed header */
}


/****************************************************
   HEADER
****************************************************/
.uni-header {
    background: #ffffff;
    border-bottom: 2px solid #e2e8f0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.uni-logo {
    height: 70px;
    filter: drop-shadow(0px 2px 3px rgba(0,0,0,0.15));
}

@media(max - width: 768px) {
    .uni-logo {
        height: 55px;
    }

    .page-container {
        padding-top: 160px;
    }
}


/****************************************************
   LOGIN PAGE
****************************************************/
.login-wrapper {
    height: 75vh;
}

.login-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    width: 100%;
    max-width: 420px;
    border-top: 4px solid #00539c;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.08);
}

.login-logo {
    height: 30px;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.2));
}

.login-title {
    font-weight: 500;
    color: #12385b;
}


/****************************************************
   FOOTER
****************************************************/
.footer {
    background: #0f2d44;
    color: #cfcfcf;
    padding: 18px;
}

    .footer a {
        color: #fff;
    }

        .footer a:hover {
            color: #d6eaff;
        }
