* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #252a2e;
    background: #fff;
}


/* =========================
   HEADER
========================= */

.top-header {
    width: 91%;
    height: 65px;
    margin: 0 auto;
    background: #870019;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 55px;
}

.university-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 18px;
}

.logo-m {
    color: hsl(45, 16%, 85%);
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.university-logo span {
    font-size: 20px;
}


/* Header links */

.header-links {
    position: absolute;
    right: 55px;
    top: 14px;
}

.header-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin-left: 25px;
}


/* Search */

.search-box {
    position: absolute;
    right: 70px;
    top: 30px;
    width: 205px;
    height: 37px;
    background: white;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.search-box span {
    font-size: 30px;
    color: #555;
    transform: rotate(-20deg);
}


/* =========================
   MAIN
========================= */

.main-container {
    width: 86%;
    max-width: 1550px;
    margin: 58px auto 0;
}

.main-container h1 {
    font-size: 43px;
    font-weight: 300;
    margin-left: 25px;
    margin-bottom: 35px;
}


/* Two columns */

.content {
    display: grid;
    grid-template-columns: 58% 38%;
    column-gap: 35px;
    align-items: start;
}


/* =========================
   LOGIN PANEL
========================= */

.login-panel {
    background: #fafafa;
    border: 1px solid #e6e6e6;
    padding: 38px 35px 35px;
    min-height: 365px;
}

.login-panel label {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.login-panel input {
    width: 100%;
    height: 47px;
    border: 1px solid #c8c8c8;
    background: #fff;
    padding: 8px 12px;
    font-size: 16px;
    margin-bottom: 13px;
    outline: none;
}

.login-panel input:focus {
    border-color: #777;
}


/* Help links */

.help-link {
    display: block;
    width: fit-content;
    color: #526276;
    font-size: 17px;
    text-decoration: none;
    border-bottom: 1px solid #c7c7c7;
    margin-bottom: 35px;
}

.help-link:hover {
    text-decoration: underline;
}

.help-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e4e7e9;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-right: 6px;
}


/* Sign In button */

#signInButton {
    background: #526274;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 11px 23px;
    font-size: 18px;
    cursor: pointer;
}

#signInButton:hover {
    background: #414f5e;
}


/* =========================
   RIGHT SIDE
========================= */

.information-panel {
    padding-top: 2px;
}

.information-panel h2 {
    font-size: 27px;
    font-weight: 300;
    margin-bottom: 8px;
}


/* MyU */

.myu-logo {
    color: #870019;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 120px;
    font-weight: bold;
    line-height: .85;
    margin-bottom: 25px;
}


/* Description */

.information-panel p {
    font-size: 18px;
    line-height: 1.45;
    max-width: 610px;
}


/* Get help */

.information-panel h3 {
    font-size: 28px;
    font-weight: 300;
    margin-top: 32px;
    margin-bottom: 16px;
}

.technology-help {
    color: #870019;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid #870019;
}


/* =========================
   DISCLAIMER
========================= */

.disclaimer {
    margin: 40px 0 120px 175px;
    font-size: 18px;
}

.disclaimer span {
    color: #870019;
    font-size: 22px;
    margin-right: 5px;
}

.disclaimer a {
    color: #a21d38;
    text-decoration: none;
    border-bottom: 1px solid #dfc5ca;
}


/* =========================
   FOOTER
========================= */

footer {
    width: 95%;
    margin: 0 auto;
    border-top: 1px solid #e5e5e5;
    padding: 25px 0 12px;
    text-align: center;
}

footer p {
    font-size: 15px;
    line-height: 1.4;
}

footer a {
    color: #526276;
    text-decoration: underline;
}


/* =========================
   SMALL SCREENS
========================= */

@media (max-width: 900px) {

    .top-header {
        width: 100%;
        height: 60px;
        padding-left: 20px;
    }

    .header-links,
    .search-box {
        display: none;
    }

    .main-container {
        width: 92%;
        margin-top: 35px;
    }

    .main-container h1 {
        margin-left: 0;
        font-size: 38px;
    }

    .content {
        grid-template-columns: 1fr;
    }

    .information-panel {
        margin-top: 30px;
    }

    .myu-logo {
        font-size: 90px;
    }

    .disclaimer {
        margin-left: 0;
        margin-bottom: 60px;
    }
}