.title-section.section-wrapper {
    padding-top: 14rem;
    padding-bottom: 6rem;
}

.movie-section .movie-holder {
    text-align: center;
}

.movie-description-section.section-wrapper {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.movie-description-section .movie-description-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.movie-description-section .movie-description-header .title {
    max-width: 70%;
    margin-right: 2rem;
}

.movie-description-section .movie-description-header .tags {
    color: #FA0695;
}

.movie-description-section .movie-description-header .tags a {
    color: #ffffff;
}

.movie-description-section .movie-description-header .tags a:hover {
    color: #FA0695;

}

.movie-description-section .movie-description-content p {
    font-weight: 300;
    letter-spacing: 0.55px;
}

.movies-banner-section {
    text-align: center;
    line-height: 0;
}

/* LATEST UPDATES SECTION -- layout at home.css*/

.latest-updates-section .btn-holder {
    margin-top: 4rem;
}

.load-more-section .load-hidden {
    display: none !important;
}

.load-more-section .btn-holder.hidden {
    display: none;
}

/* LATEST UPDATES SECTION */

/* JOIN SECTION  */
.join-section.section-wrapper {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.join-section.bg-img {
    background-image: url('../images/videos/sign-up-banner.png');
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
}

.join-section .join-section-content {
    width: 50%;
    margin-left: 50%;
}

.join-section .title h2 {
    color: #ffffff;
}

.join-section .form-holder .inputs-holder {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* ./JOIN SECTION  */

@media (max-width: 1366px) {

    .title-section.section-wrapper {
        padding-top: 12rem;
    }

    .join-section.section-wrapper {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .join-section.bg-img {
        background-size: 600px;
        background-position: bottom left;
    }

}

@media (max-width: 1199.98px) {

    .title-section.section-wrapper {
        padding-top: 10rem;
        padding-bottom: 4rem;
    }

    .movie-description-section.section-wrapper {
        padding-top: 2rem;
        padding-bottom: 4rem;
    }

}

@media (max-width: 991.98px){
    .join-section.section-wrapper {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .join-section.bg-img {
        background-size: 450px;
    }
}

@media (max-width: 767.98px) {
    .title-section.section-wrapper {
        padding-top: 8rem;
        padding-bottom: 2rem;
    }

    .join-section .join-section-content {
        width: 100%;
        margin: auto;
        max-width: 425px;
    }

    .join-section .join-section-content .title{
        text-align: center;
    }
    
}


@media (max-width: 575.98px) {
    .title-section.section-wrapper {
        padding-top: 6rem;
    }

    .join-section.section-wrapper {
        padding-bottom: 21rem;
    }
}

@media (max-width: 374.98px){
    .join-section.bg-img {
        background-position: bottom left -50px;
    }
}

/* INPUTS */

/* removes white background-color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";
    -webkit-transition-delay: 9999s;
}

.form-group input[type=email],
.form-group input[type=password],
.form-group input[type=text] {
    background-color: #141313;
    width: 100%;
    height: 3rem;
    padding-left: 1.5rem;
    padding-right: 3rem;
    background-repeat: no-repeat;
    background-position: top 50% right 1rem;
}

.form-group:not(:last-of-type) {
    margin-bottom: 1.5rem;
}

.form-group input#email {
    background-image: url('../images/login/envelope.svg');
}

.form-group input#username {
    background-image: url('../images/login/user.svg');
}

.form-group input#password {
    background-image: url('../images/login/key.svg');
}

/* ./INPUTS */