body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    background-image: url('pintoflix.jpg'); 
    background-size: cover;
    background-position: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    background: rgba(0, 0, 0, 0.1); 
}


.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 40px; 
}

.movies-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #fff; 
}

.movies-link:hover {
    color: #f00; 
}
.language-select {
    position: absolute;
    top: 20px;
    right: 150px;
}

.language-select select {
    background: #333;
    color: white;
    border: 1px solid #444;
    padding: 5px 10px;
    border-radius: 5px;
}

.sign-in-btn {
    position: absolute;
    top: 20px;
    right: 20px;
}

.sign-in-btn a {
    text-decoration: none;
    color: white;
    background: #e50914;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.email-form {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.email-form input[type="email"] {
    flex: 1;
    padding: 15px;
    font-size: 1rem;
    border: none;
    outline: none;
}

.email-form button {
    background: #e50914;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}

.email-form button:hover {
    background: #f40612;
}
