a {
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #F2F5F8;
}


/*menu bar*/

section#top-menu-bar {
    background-color: #013970;
}

section#top-menu-bar .top-menu-bar {
    display: flex;
    justify-content: flex-start;
}

section#top-menu-bar .single-menu {
    background-color: #4bb1c0;
    width: 100px;
    text-align: center;
    margin: 0;
}

section#top-menu-bar .single-menu a {
    color: #ffffff;
    font-size: 20px;
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px;
    text-decoration: none;
}

section#top-menu-bar .single-menu a:hover {
    background-color: #439dab;
}


/* login-screen*/

section#login-screen .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

h2 {
    margin-top: 30px;
    font-size: 28px;
    font-weight: 700;
    width: 100%;
    text-align: left;
}

section#login-screen .img-div {
    max-width: 400px;
}

section#login-screen .img-div img {
    width: 100%;
}

section#login-screen .login-div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 80%;
}

section#login-screen .login-div input {
    border-radius: 10px;
    border: 0;
    padding: 5px 10px 5px 10px;
    margin-top: 10px;
    width: 100%;
    font-size: 16px;
    background-color: #e0dede;
}

button,
.btn {
    border-radius: 10px;
    border: 0;
    padding: 5px 10px 5px 10px;
    margin-top: 10px;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    color: white;
    background-color: #013970;
}

button:hover,
.btn:hover {
    color: white;
    background-color: #88c1ed;
}

section#login-screen .login-div .forget-pw-div {
    margin-top: 10px;
}

section#login-screen .login-div .forget-pw-div a {
    font-size: 20px;
    font-weight: 500;
    color: black;
}