* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Fondo tipo Netflix */
body {
    height: 100vh;
    background-color: #bc5a05;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: #e6b506;
    padding: 40px;
    width: 350px;
    border-radius: 8px;
    color: #fff;
}

.login-container h2 {
    margin-bottom: 25px;
    font-size: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: none;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    background: #3d3e3e;
    color: #fff;
    font-size: 16px;
}

.form-group input::placeholder {
    color: #aaa;
}

button {
    width: 100%;
    padding: 15px;
    background: #3e251b;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #744837;
}

.error {
    background: #e50914;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    text-align: center;
}