/* Styling the body */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Styling the form container */
h2 {
    background-color: #e50914;
    padding: 20px;
    border-radius: 5px 5px 0 0;
}

form {
    background-color: #333;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

/* Styling labels and input fields */
label {
    display: block;
    text-align: left;
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #444;
    color: #fff;
}

/* Styling the submit button */
input[type="submit"] {
    background-color: #e50914;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #ff5a1f;
}
/* Styling the guidelines */
.guideline {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

/* Styling the required note */
.required-note {
    font-size: 14px;
    color: #ff0000; /* Red color for asterisk */
    margin-top: 10px;
}

/* Additional CSS styling for other form elements can be added here */
/* Reset default link styles */
a {
    text-decoration: none;
    color: inherit;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.netflix-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #E50914; /* Netflix red */
    color: #fff; /* Text color */
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.netflix-button:hover {
    background-color: #FF0000; /* Darker red on hover */
}

