#login-card-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.login-card{
    width: 180px;
    height: 300px;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    background-color: #47acc3;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
}

.login-card h2{
    text-align: center;
    color: white;
}

.login-card img{
    width: 80%;
    border-radius: 5px;
    margin-bottom: 20px;
}