/* ---------------------------------------
 *
 * HOJA DE ESTILOS DEL PANEL DE ASISTENTES DEL 3er CONGRESO PALMERO MEXICANO
 * Versión: 1.0.0
 * Fecha de creación: 11/02/2026
 * Fecha de edición: --/--/----
 *
--------------------------------------- */

/* IMPORTAR */
@import url('reset.css');
@import url('color_scheme.css');
@import url('font_face.css');


/* LAYOUT */
html {
    scroll-behavior: smooth;
    height: 100vh;
}

html body {
    background-image: url('../imgs/login/img_camino_plantacion.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: var(--body_font), sans-serif;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 300;
    color: var(--negro);
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    height: 100vh;
}

h1, h2, h3, h4 , h5, h6 {
    font-family: var(--body_font);
    color: inherit;
    line-height: 1.2;
}

h1 {
    font-size: 1.75rem;
    line-height: 1.75rem;
}

strong { font-weight: bold; }

a {
    font-size: inherit;
    font-weight: bold;
    line-height: 1;
    color: inherit;
    text-decoration: none;
    transition: ease-in-out 0.3s;
}
a:hover { color: inherit; }

button { cursor: pointer; }

html, body, section, div, header, footer, main, form { box-sizing: border-box; }


/* CONTENEDORES */
.wrap_content {
    width: 100%;
    padding: 0 1.25rem;
    margin: 0 auto;
}

.wrap_heading {
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
}


/* COMPONENTES */
/* Botones */
* .button {
    background-color: transparent;
    border: 1px solid var(--naranja_fruto);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    transition: ease-in-out 0.3s;
    color: inherit;
}

* .button.primary {
    background-color: var(--naranja_fruto);
    padding: 1rem 2rem;
    text-transform: uppercase;
    color: rgb(var(--blanco));
}

* .button:hover,
* .button.primary:hover {
    background-color: var(--verde_vivo);
    border-color: var(--verde_vivo);
}

.button.disabled,
.button.disabled:hover {
    cursor: not-allowed;
    background-color: var(--celeste1);
    border-color: var(--gris);
    color: var(--gris);
}

/* Cards */
.comp_card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    background-color: rgb(var(--blanco));
    padding: 1.25rem;
    max-width: 29rem;
}

/* Formularios */
input:not([type="submit"], [type="hidden"], [type="radio"], [type="checkbox"], [type="file"]), textarea, select {
    border: 1px solid var(--gris);
    background-color: var(--celeste1);
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: inherit;
    box-sizing: border-box;
    width: 100%;
    height: 3rem;
    color: inherit;
}

.comp_form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
}

.comp_form_item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
}

label {
    font-weight: bold;
    font-size: 1rem;
}

/* Imágenes */
.comp_card img {
    display: block;
    margin: 0 auto;
    max-width: 14rem;
}

/* Alertas */
.comp_alert {
    padding: 0.5rem;
    text-align: center;
}

.comp_alert.error {
    border: 1px solid #FF383C;
    background-color: rgba(255,56,60,0.12);
}