.login-container {
    min-height: 80vh;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

.login-form {
    background-image: linear-gradient(to bottom right, rgba(242, 220, 203, .7), rgba(0, 176, 126, .6), rgba(34, 214, 178, .6), rgba(0, 176, 126, .4));
    width: 90%;
    max-width: 700px;
    margin: auto;
    border-radius: 15px;
    box-shadow: 0px 0px 5px var(--sea);
    padding: 30px 15px;
    position: relative;
    border: 1px solid var(--water-green);
}

.collaboration {
    background-color: var(--emerald);
    color: var(--white);
    border-radius: 15px;
    margin: 10px auto;
    margin-bottom: 50px !important;
}

.collaboration p {
    padding: 10px 0px;
}

#hotel-selector-container {
    background-color: white;
    border-radius: 15px;
    width: 102% !important;
    margin-left: -1%;
    padding: 10px 0px;
    border-right: 1px solid var(--water-green);
    border-left: 1px solid var(--water-green);
}

.pacote-form {
    background-color: var(--white);
    border-radius: 15px;
    max-width: 250px;
    margin: 15px auto;
    padding-bottom: 5px;
    box-shadow: 0px 0px 5px var(--primary);
}

.pacote-form.active {
    border: 5px solid var(--water-green);
    box-shadow: none;
}

.pacote-form .hotel-pic {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    margin-bottom: -10px;
}

.pacote-form .hotel-pic img {
    width: 100% !important;
    height: 130px;
}

.pacote-form h5,
.pacote-form p {
    height: 20px;
    padding: 0px 10px;
}

.pacote-form p {
    height: initial;
}

.pacote-form p span {
    display: inline-block;
    font-size: 12px;
    color: var(--dark);
}

.pacote-form a {
    font-size: 14px;
}

.pacote-form.active .btn.selector {
    cursor: not-allowed;
    background-color: var(--water-green);
    color: var(--white);
}

@media screen and (max-width: 650px) {

    .login-form {
        padding: 30px 5px;
    }

    #hotel-selector-container {
        display: block;
    }

    .pacote-form {
        max-width: 350px;
        width: 90%;
        margin-bottom: 30px;
    }

    #flights.split,
    #paxes.split {
        display: block;
    }

    #flights.split .right {
        text-align: left;
    }

    #paxes.split .right {
        text-align: center;
    }

    #paxes.split .right i {
        font-size: 25px;
    }


}