.movie-title {
    font-size: 1rem !important;
    display: flex;
    align-items: center;
    height: 100%;
}

.search-form form
{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem; /* optional, for spacing */
}

.login-container input,
.search-form input {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-block: 1rem;
    width: 224px;
    height: 80px;
    padding-inline: 1.75rem;
    padding-bottom: .675rem;
    background-color: black;
    border-style: solid;
    border-color: white;
    border-radius: 100vmax;
    border-width: 2px;
    text-align: right;
    line-height: 1.175;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.movie-card button {
    width: 100px;
    height: 40px;
    font-size: .6rem;
    padding: 0px;
    padding-bottom: 13px;
}


.search-form input
{
    width: 80% !important;
    height: 40px !important;
    font-size: 0.8rem;
    padding: 1px;
    padding-right: 10px;
    padding-left: 10px;
}
.search-form button {
    width: 120px;
    height: 40px;
    font-size: 0.8rem;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 35px;
}


.movie-details {
    padding-left: 20px;
}

.movie-card .lcars-text-bar {
    margin-bottom: 20px;
}

.reel-gif svg {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 140%;
    z-index: -1;
    pointer-events: none;
    animation: spin 40s linear infinite;
    transform-origin: center;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.banner {
    font-weight: bold;
}