* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #141414;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://assets.nflxext.com/ffe/siteui/vlv3/8ef88e03-6f89-4f75-ac4a-6f7c9bc09abe/') center/cover no-repeat;
    z-index: 0;
}

.login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.login-box {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.85);
    padding: 60px 68px 40px;
    border-radius: 4px;
    min-width: 450px;
    max-width: 450px;
}

.login-header h1 {
    color: #e50914;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.login-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    background: #333;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
}

.form-group input::placeholder {
    color: #8c8c8c;
}

.form-group input:focus {
    outline: none;
    background: #454545;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0 24px;
    font-size: 14px;
    color: #b3b3b3;
}

.form-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.forgot-link {
    color: #b3b3b3;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 16px;
    background: #e50914;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.login-btn:hover {
    background: #f40612;
}

.signup-link {
    margin-top: 20px;
    font-size: 16px;
    color: #737373;
    text-align: center;
}

.signup-link a {
    color: #fff;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

.login-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #8c8c8c;
}

.login-footer p {
    margin-bottom: 8px;
}

.login-footer a {
    color: #0071eb;
    text-decoration: none;
}

.alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 14px;
}

.alert-danger {
    background: rgba(229, 9, 20, 0.2);
    border: 1px solid #e50914;
    color: #e50914;
}

.alert-success {
    background: rgba(0, 200, 0, 0.2);
    border: 1px solid #00c800;
    color: #00c800;
}

.alert-warning {
    background: rgba(255, 200, 0, 0.2);
    border: 1px solid #ffc800;
    color: #ffc800;
}

@media (max-width: 768px) {
    .login-box {
        padding: 40px 30px;
        min-width: auto;
        width: 90%;
        max-width: 400px;
        margin: 20px;
    }
}