/*
Theme Name: River
Theme URI: https://tusitio.com/river
Description: Tema personalizado River. Diseño limpio y minimalista.
Author: Tu Nombre
Author URI: https://tusitio.com
Version: 1.0
Text Domain: river
*/

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #fff;
    color: #333;
}

/* Eliminar footer por defecto */
footer {
    display: none;
}
/* Oculta el título en la página de inicio */
.home .entry-title,
.home .wp-block-post-title,
.home h1.page-title {
    display: none !important;
}
/* Contenedor principal (centrado vertical/horizontal) */
.river-acceso-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 20vh;
    padding: 20px;
    background: #f8fafc; /* Fondo claro */
}

/* Formulario */
.river-acceso-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #dc2626; /* Borde rojo */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* Título */
.river-acceso-titulo {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Grupo del input + icono */
.river-input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

/* Input de clave */
.river-input-clave {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
}

.river-input-clave:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Icono del candado */
.river-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: #94a3b8;
}

/* Botón de acceso */
.river-boton-acceso {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.river-boton-acceso {
    background: #dc2626; /* Rojo fuerte */
    color: white;
    border: 2px solid #dc2626; /* Borde rojo */
}

.river-boton-acceso:hover {
    background: #b91c1c; /* Rojo más oscuro al pasar el mouse */
    transform: translateY(-2px);
}
