body {
    background-image: linear-gradient(to top, #0587a1, #0dcaf0);
    font-family: "Quicksand";
}

.container {
    padding-bottom: 140px;
}

.login-box {
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 5px 5px 5px black;
}

.login-box img {
    width: 350px;
    height: 350px;
}

.login-form {
    padding-left: 50px;
}

.login-box h1 {
    font-size: 60px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
}

.login-box .form-control {
    background-color: #e5e5e5;
    border: none;
    border-radius: 20px;
    height: 45px;
    font-size: 1.3rem;
    padding-left: 15px;
}

.login-box .form-control:hover {
    background-color: #eaeaea;
}

.login-box > .form-control:focus {
    //box-shadow: none;
    border-color: #e5e5e5;
}

.login-box .input-group-text {
    background-color: #e5e5e5;
    color: #6b6b6b;
    border: none;
    font-size: 1.3rem;
    border-radius: 20px;
    padding: 12px;
    transition: background-color 0.3s ease;
}

.login-box .form-control:hover + .input-group-text {
    background-color: #f0f0f0;
}

.login-box .btn-login {
    border-radius: 20px;
    text-transform: uppercase;
    height: 45px;
    width: 100%;
    background-color: #0dcaf0;
    color: black;
    transition: background-color 0.3s ease;
}

.login-box .btn-login:hover {
    background-color: #83e8fc;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 140px;
}

@media (max-height: 700px) {
    .footer {
        display: none;
    }
}

.alert-box-login {
  border-radius: 29px;
}

#agreement-link {
  text-decoration: none;
}
#password-lost-link {
  text-decoration: none;
}
#register-link {
  text-decoration: none;
}
