#nav {
    box-shadow:
        0 4px 8px 0 rgba(0,0,0,0.01),
        0 6px 20px 0 rgba(0,0,0,0.01);
}
#body {
    height: 70%;
}
.container {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    width: 100%;
}
.login-container div {
    display: flex;
    justify-content: center;
    align-items: center;
}
h1 {
    text-align: center;
    font-weight: 550;
    color: #333;
}
input {
    margin: 8px 0;
    border: 0;
    padding: 10px;
    font-size: 1rem;
    background-color: #E6FCFF;
    color: #0171ad;
}
input:focus {
    outline: none !important;
    border: 0;
    border-bottom: 2px solid #0171ad;
}
button {
    width: fit-content;
    margin: 8px 0;
    padding: 10px;
    border: 0;
    background-color: #0171ad;
    color: white;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
}
button:hover {
    background-color: #075782;
}