.display-inline {
    display: inline-block;
}

.login-content {
    padding: 177px 130px 100px 95px;
    width: 900px;
    justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: white;
}

.container {
    padding: 15px;
    justify-content: center;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
}

.logo {
    text-align: center;
    width: 280px;
}

.logo img {
    max-width: 100%;
}

.title {
    text-align: center;
    color: #333333;
    font-size: 25px;
    line-height: 1.2;
    padding-bottom: 45px;
    display: block;
    font-family: Poppins-Bold;
}

form {
    width: 300px;
}

form ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#password, #username, #submit {
    width: 100%;
    padding: 0 30px;
    line-height: 1.5;
    height: 50px;
    box-sizing: border-box;
    background-color: #e6e6e6;
    color: #666666;
}

#password:focus, #username:focus {
    -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
    animation: anim-shadow 0.5s ease-in-out forwards;
}

form li {
    margin-bottom: 10px;
}

input {
    border-radius: 25px;
    border: none;
}

.submit {
    margin-top: 30px;
}

#submit {
    font-family: Montserrat-Bold;
    text-transform: uppercase;
    background-color: #4985fc;
    color: rgb(255, 255, 255);
    transition: all 0.4s;
}

#submit:hover {
    background-color: #333333;
    cursor: pointer;
}

@media (max-width: 992px) {
    .login-content {
      padding: 177px 90px 33px 85px;
    }
  
    .logo {
      width: 35%;
    }
  
    form {
      width: 50%;
    }
}
  
@media (max-width: 768px) {
    .login-content {
        padding: 100px 80px 33px 80px;
    }

    .logo {
        display: none;
    }

    form {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .login-content {
        padding: 100px 15px 33px 15px;
    }
}