/* Reset básico */
* {
    box-sizing: border-box;
    margin: 4px;
    padding: 0px;
}

/* Body */
body {
    background: #0a0a0a url("img/background.gif") repeat center center;
    color: #00ff7f; /* verde neón pero más suave */
    font-family: 'Courier New', monospace;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-shadow: 0 0 5px #00ff7f;
}

/* Títulos */
h1, h2 {
    margin-bottom: 20px;
    color: #00ff7f;
    letter-spacing: 1px;
    text-shadow: 0 0 8px #00ff7f;
}

/* Párrafos */
p {
    max-width: 600px;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Links */
a {
    color: #00ff7f;
    text-decoration: underline dotted;
    transition: all 0.2s;
}

a:hover {
    text-shadow: 0 0 8px #00ff7f;
}

/* Formulario */
form {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 0 15px #00ff7f;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

label {
    font-weight: bold;
}

input, select, button {
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid #00ff7f;
    background: #111;
    color: #00ff7f;
    font-family: monospace;
}

input:focus, select:focus {
    outline: 2px solid #00ff7f;
}

button {
    cursor: pointer;
    background: #00ff7f;
    color: #000;
    font-weight: bold;
    transition: all 0.2s;
}

button:hover {
    background: #00cc66;
}
