/* Login Area */
.container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    margin-top: auto;
    margin-bottom: auto;
    width: 400px;
    max-width: 100%;
    /* Impede que o card fique menor em telas pequenas */
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.social_icon span {
    font-size: 60px;
    margin-left: 10px;
    color: #ecc90396;
}

.social_icon span:hover {
    color: white;
    cursor: pointer;
}

.card-header h3 {
    color: white;
}

.social_icon {
    position: absolute;
    right: 20px;
    top: -45px;
}

.input-group-prepend span {
    width: 50px;
    background-color: #ecc90396;
    color: black;
    border: 0 !important;
}

input:focus {
    outline: none;
    box-shadow: none;
}

.remember {
    color: white;
}

.remember input {
    width: 20px;
    height: 20px;
    margin-left: 15px;
    margin-right: 5px;
}

.login_btn {
    color: black;
    background-color: #ecc90396;
    width: 100px;
}

.login_btn:hover {
    color: black;
    background-color: white;
}

.links {
    color: white;
}

.links a {
    margin-left: 4px;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.imgLogo {
    width: 100%;
}

.container {
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 670px) {

    /* Para telas menores, como celulares */
    .card {
        height: 390px !important;
        width: 546px !important;
    }
}

@media (max-width: 500px) {

    .card {
        height: 100% !important;
        width: 100% !important;
        max-width: 546px !important;
        /* Evita que fique muito grande */
        display: flex;
        flex-direction: column;
    }

    .containerCard {
        margin: auto;
    }

    .inputDadosLoginEuropa {
        height: 80px !important;
    }
}