body {
    background-color: #141414;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #1c1c1c;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 {
    color: #e50914;
    font-size: 28px;
    margin-bottom: 20px;
}

label {
    display: block;
    text-align: left;
    margin: 15px 0 5px;
    font-weight: bold;
}

input[type="file"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: none;
    background-color: #333;
    color: #fff;
    margin-bottom: 15px;
}

button {
    background-color: #e50914;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #f40612;
}

.disclaimer {
    font-size: 12px;
    color: #bbb;
    margin-top: 30px;
    line-height: 1.5;
}

