body
{
    margin: 0;
    padding: 0;
    font-family: "Roboto", serif;
    color: white;
    background-color: black;
}
.box
{
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('images/netflix_login_background.jpg');
    background-size: cover;
    background-position: center;
}
.header
{
    height: 100px;
    padding: 0 140px 0 140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.red-btn
{
    padding: 10px;
    font-size: 1rem;
    font-weight: 500;
    background-color: #E50914;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.red-btn:hover
{
    background-color: #B00710;
}
.dropdown
{
    height: 2rem;
    padding: 0 10px 0 10px;
    font-size: 1.2rem;
    color: white;
    background: transparent;
    margin-right: 7px;
}
.dropdown option
{
    color: black;
}
.content
{
    text-align: center ;
}
.tagline
{
    font-size: 3.7rem;
    font-weight: 900;
    padding-top: 3rem;
}
.tagline-next
{
    font-size:1.25rem ;
    margin-top: -40px;
    font-weight: 500;
}

.container
{
    padding: 0 140px 0 140px;
}

.heading
{
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 4rem;
}

.cards-container
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.card
{
    width: 14rem;
    height: 20rem;
    padding: 1rem;
    border-radius: 10px; 
    background: linear-gradient(145deg, #1e1333, #301b4b); 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6); 
}
.card h2 
{
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.card p 
{
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #B3B3B3;
}

.buttons-container 
{
    display: flex;
    flex-direction: column; 
    gap: 0.7rem; 
    flex-wrap: wrap;
}
.button 
{
    background-color: #2b2b2b; 
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.5rem;
    padding:0 1.5rem ;
    transition: background-color 0.3s;
}
.button:hover 
{
    background-color: #444;
}
.plus 
{
    font-size: 4rem;
    font-weight: 100;
}



.email-section 
{
    text-align: center;
    margin: 5rem auto;
    max-width: 50rem;
    color: white;
}
.email-form 
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.email-input 
{
    flex: 1;
    max-width: 40rem;
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #1e1e1e;
    color: white;
}
.a
{
    max-width: 35rem ;
    margin-top: -1px;
}
.b
{
    max-width: 25rem;
}

.email-button 
{
    height: auto;
    padding: 15px 30px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.footer-section
{
    display: flex;
    justify-content: space-between;
    width: auto;
    line-height: 2.5rem;
    margin-top: 2rem;
}
.footer-section .footer-col a
{
    color: #cccccc;
    text-decoration: underline;
    font-size: 0.90rem;
}
.bottom
{
    height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.last
{
    background-color: #1e1e1e;
    width: fit-content;
}
/* Tablet */
@media (max-width: 1024px)
{
    .header,
    .container
    {
        padding: 0 50px;
    }

    .tagline
    {
        font-size: 3rem;
    }

    .cards-container
    {
        gap: 1rem;
        justify-content: center;
    }

    .card
    {
        width: 18rem;
        margin-bottom: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px)
{
    .header
    {
        padding: 0 20px;
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }

    .container
    {
        padding: 0 20px;
    }

    .tagline
    {
        font-size: 2.2rem;
        padding-top: 2rem;
    }

    .tagline-next
    {
        font-size: 1rem;
        margin-top: -20px;
    }

    .email-form
    {
        flex-direction: column;
    }

    .email-input,
    .b
    {
        width: 90%;
        max-width: 90%;
    }

    .email-button
    {
        width: 90%;
    }

    .card
    {
        width: 100%;
        height: auto;
    }

    .button
    {
        font-size: 1rem;
        height: auto;
        padding: 1rem;
    }

    .plus
    {
        font-size: 2rem;
    }

    .footer-section
    {
        flex-direction: column;
        gap: 1rem;
    }
}