body {
    background: rgb(215,136,39);
    background: linear-gradient(90deg, rgba(215,136,39,1) 0%, rgba(230,170,102,1) 50%, rgba(247,205,122,1) 100%);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
}
a {
    color: white;
}
a:hover {
    color: white;
}
p.banner {
    font-size: 16px;
    font-weight: 700;
}
p.header {
    font-size: 36px;
    margin-top: 2rem;
    font-weight: 700;
}
.logo {
    text-align: center;
}
.logo img {
    width: 70%;
}
.login-form .input-group-text {
    background-color: white;
    color: darkgrey;
    border-right: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.login-form input {
    border-left: none;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 18px;
}
.login-button {
    border-radius: 10px;
}
@media (max-width:480px)  {
    body {
        padding: 20px;
    }
    p.banner {
        font-size: 12px;
    }
    p.header {
        font-size: 24px;
        margin-top: 1rem;
    }
}
@media (max-height:720px)  {
    .footer {
        margin-top: 30px;
    }
}
@media (min-height:720px)  {
    .footer {
        position: absolute;
        bottom: 0;
    }
}
