/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Fondo tipo Netflix */
body {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url("https://assets.nflxext.com/ffe/siteui/vlv3/9b7c9f77-2b44-4d2b-9c7f-6e3bbd0a4e2f/guatemala-es-20230821-popsignuptwoweeks-perspective_alpha_website_medium.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor del login */
.login-container {
    background: rgba(0, 0, 0, 0.75);
    padding: 40px;
    width: 350px;
    border-radius: 8px;
    color: #fff;
}

/* Título */
.login-container h2 {
    margin-bottom: 25px;
    font-size: 28px;
}

/* Inputs */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: none; /* estilo Netflix */
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    background: #333;
    color: #fff;
    font-size: 16px;
}

/* Placeholder */
.form-group input::placeholder {
    color: #aaa;
}

/* Botón */
button {
    width: 100%;
    padding: 15px;
    background: #e50914;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #f6121d;
}

/* Error */
.error {
    background: #e50914;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    text-align: center;
}