* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: black;
}

.background {
    background: url('https://assets.nflxext.com/ffe/siteui/vlv3/background.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
}

.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.75);
    padding: 60px;
    width: 350px;
    color: white;
    border-radius: 5px;
}

.login-box h1 {
    margin-bottom: 20px;
}

.login-box input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #333;
    border: none;
    color: white;
    border-radius: 4px;
}

.login-box button {
    width: 100%;
    padding: 12px;
    background: #e50914;
    border: none;
    color: white;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
}

.login-box button:hover {
    background: #f6121d;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 10px;
}

.options a {
    color: #b3b3b3;
    text-decoration: none;
}

.signup {
    margin-top: 20px;
    font-size: 14px;
}

.signup a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}