/* Formulario de registro */
.contenedor-registro-directo {
    max-width: 450px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e1e1e1;
}

.contenedor-registro-directo h2 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    font-size: 24px;
}

#form-registro input {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border 0.3s;
}

#form-registro input:focus {
    border-color: #D35400;
    outline: none;
    box-shadow: 0 0 0 2px rgba(211, 84, 0, 0.2);
}

.btn-enviar {
    background: #D35400;
    color: #fff;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-enviar:hover {
    background: #A84300;
}

.btn-enviar:disabled {
    background: #aaa;
    cursor: not-allowed;
}

/* Mensajes */
#respuesta-registro {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
}

.mensaje-exito {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
}

.mensaje-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
}

/* Tabla de usuarios */
.contenedor-tabla-usuarios {
    margin: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tabla-usuarios {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.tabla-usuarios th {
    background: #f1f1f1;
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #ddd;
    font-weight: bold;
}

.tabla-usuarios td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}

.tabla-usuarios tr:hover {
    background: #f9f9f9;
}

.paginacion {
    margin-top: 20px;
    text-align: center;
}

.paginacion button {
    margin: 0 5px;
    padding: 8px 16px;
}

.error-mensaje {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin: 20px;
    text-align: center;
    border: 1px solid #f5c6cb;
}

/* Botones generales */
.button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

.button:hover {
    background: #005a87;
}