
.bodyContainer{
    background-image: linear-gradient(to right top, #adb5bd, #343a40);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    height: 100%;
    overflow: auto;
}

.mainContainer{
    height: auto;
}

.flex{
    display: flex;
    justify-content: center;
    align-items: center;
   /* height: 5%;*/
}

.grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.card{
    background-color:  var(--light-color);
    border-radius: 0px 40px 40px 40px;
    color: var(--dark-color);
    padding: 35px;
    margin: 0 20px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.2);
}

.btn{
    background-color: var(--primary-color);
    color: #141313;
   /* border: 2px solid transparent;*/
    padding: 5px 5px;
    min-width:25px;
    text-align:center;
    display: inline-block;
    cursor: pointer;
    font-size: 20px;
    border-radius:5px;
    margin: 5px 0;
    transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out, color 0.2s ease-in-out;
}

.btn--start:hover{
    color:#343a40;
    background-color: #ff0000;
    border-color: #141313;
}

.btn:hover{
    color:#fff;
    background-color: var(--dark-color);

}
.btn--start{
    background-color: #343a40;
    color: #FF0000;
    padding: 10px 15px;
    min-width:25px;
    text-align:center;
    display: inline-block;
    cursor: pointer;
    font-size: 30px;
    border-radius:20px;
    margin: 5px 0;
    transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out, color 0.2s ease-in-out;
    animation-duration: 50s;
    animation-delay:2s;
}

.nav-profile{
    margin: 0;
    padding-left: 5px;
}

@keyframes growUp {
    from { height: 0px;}
}

.btn--white{
    background-color:#dee2e6;
    color: var(--primary-color);
}

.btn--dark{
    background-color: darkgray;
    color: whitesmoke;
}

.btn--small{
    padding: 5px 5px;
    font-family:  'Montserrat', sans-serif;
}

.loginContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 72vh;
    border-radius: 20px;
    position: relative;
}

.inputLogin{
    padding: 10px;
    border-radius: 10px;
    align-items: center;
    font-size: 1rem;
    background-color: #dee2e6;
    border: none;
}

.logoMovie{
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.videoHome{
    /*width: 55vw;*/
    height: 72vh;
}

/* MEDIA QUERIES */

@media(max-width: 992px) {
    .btn {
        font-size: 1rem;
    }
    .text-sm {
        font-size: 14px;
    }
    .text-md {
        font-size: 1rem;
    }
    .text-lg {
        font-size: 1.5rem;
    }
    .text-xl {
        font-size: 1.75rem;
    }
}

@media(max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .logoMovie{
        width: 100vw;
        height: 50vh;
    }

    .videoHome{
        width: 100vw;
    }
}