* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    position: relative;
}

/* Netflix Logo */
.netflix-logo {
    position: absolute;
    top: 20px;
    left: 60px;
    z-index: 10;
}

.netflix-logo-img {
    width: 167px;
    height: auto;
    max-height: 45px;
}

/* Background */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.4)
    ),
    url('the_netflix_login_background__canada__2024___by_logofeveryt_dh0w8qv-pre.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Login Container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-box {
    background: rgba(0, 0, 0, 0.75);
    padding: 60px 68px 40px;
    border-radius: 4px;
    width: 100%;
    max-width: 450px;
    box-sizing: border-box;
}

.login-box h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 28px;
    text-align: left;
}

/* Form Styles */
#loginForm {
    margin-bottom: 24px;
}

#loginForm input[type="text"],
#loginForm input[type="password"] {
    width: 100%;
    height: 50px;
    padding: 16px 20px;
    background: #333;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

#loginForm input[type="text"]::placeholder,
#loginForm input[type="password"]::placeholder {
    color: #8c8c8c;
}

#loginForm input:focus {
    outline: none;
    background: #454545;
}

.signin-button {
    width: 100%;
    height: 50px;
    background: #e50914;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 24px;
    margin-bottom: 12px;
}

.signin-button:hover {
    background: #f40612;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    color: #b3b3b3;
    font-size: 13px;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    accent-color: #b3b3b3;
}

.checkbox-container label {
    color: #b3b3b3;
    cursor: pointer;
}

.help-link {
    color: #b3b3b3;
    text-decoration: none;
}

.help-link:hover {
    text-decoration: underline;
}

/* Signup Section */
.signup-section {
    margin-bottom: 11px;
}

.signup-section p {
    color: #737373;
    font-size: 16px;
}

.signup-link {
    color: #fff;
    text-decoration: none;
}

.signup-link:hover {
    text-decoration: underline;
}

/* reCAPTCHA Section */
.recaptcha-section {
    margin-bottom: 20px;
}

.recaptcha-section p {
    color: #8c8c8c;
    font-size: 13px;
    line-height: 1.4;
}

.learn-more {
    color: #0071eb;
    text-decoration: none;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.75);
    padding: 30px 0;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-top p {
    color: #737373;
    font-size: 16px;
    margin-bottom: 30px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column a {
    color: #737373;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.4;
}

.footer-column a:hover {
    text-decoration: underline;
}

.language-selector {
    margin-top: 20px;
}

.language-selector select {
    background: transparent;
    color: #737373;
    border: 1px solid #333;
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 2px;
}

.language-selector select option {
    background: #000;
    color: #737373;
}

/* Responsive Design */
@media (max-width: 768px) {
    .netflix-logo {
        left: 20px;
    }
    
    .netflix-logo-img {
        width: 100px;
        max-height: 27px;
    }
    
    .login-box {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}