body {
    background-color: #000;
    color: red;
    font-family: Arial, sans-serif;
}

.register-container {
    max-width: 600px;
    margin: 40px auto;
    background-color: #111;
    border: 2px solid red;
    border-radius: 10px;
    padding: 30px;
    color: white;
}

.register-container h2 {
    text-align: center;
    color: white;
    text-shadow: 0 0 5px red;
    margin-bottom: 20px;
}

.formulario-registro .campo {
    margin-bottom: 20px;
}

.formulario-registro label {
    display: block;
    color: red;
    font-weight: bold;
    margin-bottom: 5px;
}

.formulario-registro input,
.formulario-registro select,
.formulario-registro textarea {
    width: 100%;
    padding: 8px;
    background-color: #222;
    color: white;
    border: 1px solid red;
    border-radius: 4px;
}

.formulario-registro .help-text {
    font-size: 12px;
    color: #aaa;
}

.formulario-registro .error {
    font-size: 13px;
    color: orange;
    margin-top: 3px;
}

.boton-registrar {
    background-color: red;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    display: block;
    margin: 20px auto 0;
    transition: 0.3s ease;
}

.boton-registrar:hover {
    background-color: white;
    color: red;
}
