body{
    background-color:#000;
    color:#fff;
    font-family:arial sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 60px; /* Adjust this to move things closer or farther */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}
.banner{
    background-image:url(https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/f562aaf4-5dbb-4603-a32b-6ef6c2230136/dh0w8qv-9d8ee6b2-b41a-4681-ab9b-8a227560dc75.jpg/v1/fill/w_1280,h_720,q_75,strp/the_netflix_login_background__canada__2024___by_logofeveryt_dh0w8qv-fullview.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9NzIwIiwicGF0aCI6IlwvZlwvZjU2MmFhZjQtNWRiYi00NjAzLWEzMmItNmVmNmMyMjMwMTM2XC9kaDB3OHF2LTlkOGVlNmIyLWI0MWEtNDY4MS1hYjliLThhMjI3NTYwZGM3NS5qcGciLCJ3aWR0aCI6Ijw9MTI4MCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.LOYKSxIDqfPwWHR0SSJ-ugGQ6bECF0yO6Cmc0F26CQs);
    height:100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* 70% dark overlay */
    z-index: 0;
}
.signin-bttn{
    background-color:red;
    color:white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    padding: 10px 25px;
    font-family: sans-serif;
    margin-right: 180px;
}
.signin-bttn:hover{
    background-color:darkred;
    color:white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    padding: 10px 25px;
    font-family: sans-serif;
}
.netflix-logo{
    height:180px;
    width:auto;
    margin-top: 0px;
    margin-left: 180px;
}
.banner-content {
    z-index: 1;
    position: relative;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}
.banner-content h1 {
    font-size: 40px;
    margin: 0;
    color: white;
    font-family: "Arial Black";
}

.banner-content h2 {
    font-size: 24px;
    margin-top: 20px;
    color: white;
}
.banner-content p {
    font-size: 19px;
    margin-top:5px;
    color: white;
}
.email-form{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}
input[type="email"]{
    border: none;
    outline: none;
    padding: 10px;
    flex: 1;
    font-size:16px;
    border-radius: 4px;
    border: 1px solid white;
    background-color: transparent;
}
.email-form button {
    background-color: red;
    color: white;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    padding: 10px 20px;
    font-family: sans-serif;
    font-size: 16px;
    white-space: nowrap;
}