@font-face {
    font-family: "Espacio";
    src: url("assets/fonts/PLANK___.TTF") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.registro-pagina {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-template-areas: "aside cuerpo";
    place-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

@media (max-width: 700px) {
    .registro-pagina {
        grid-template-areas: "cuerpo" "aside";
        grid-template-columns: 1fr;
    }
    .aside-registro {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    #formulario {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}


.aside-registro {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    grid-area: aside;
}

aside h1 {
    margin-top: 2rem;
    letter-spacing: 3px;
    line-height: 1.5;
    color: rgb(0, 214, 129);
    animation: brillar 3s ease-in-out infinite;
}

.aside-contenedor {
    background: none;
    padding: 1.5rem;
    border: 4px dashed rgb(0, 159, 96);
}   

.aside-contenedor:first-of-type {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.aside-contenedor p:first-child {
    padding-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgb(182, 214, 0);
    text-transform: uppercase;
}
.aside-contenedor p {
    line-height: 16px;
    color: grey;
}

.imagen-aside {
    height: 128px;
    width: 128px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    animation: flotar 3s ease-in-out infinite;
    border: dashed rgb(93, 215, 44);
    border-radius: 50px;
}

.aside-contenedor:last-of-type {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contador-numero {
    font-size: 40px;
    margin-bottom: 1rem;
}

#formulatio {
    grid-area: cuerpo;
}

.contenedor-formulario {
    display: flex;
    flex-direction: column;
}

.aside-msg-wrap {
    display: flex;
    flex-direction: column;
}

.aside-msg {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 1rem;
}

.box1 {
    height: 70px;
    width: 10px;
    background-color: rgb(182, 214, 0);
}

.box2 {
    height: 70px;
    width: 10px;
    background-color: rgb(12, 132, 96);
}

.aside-msg-texto {
    display: flex;
    flex-direction: column;
}

.contenedor-formulario {
    background-color: rgb(41, 231, 155);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
}

.contenedor-formulario p:first-of-type {
    color: rgb(255, 255, 255);
    font-weight: 700;
    background-color: rgb(12, 132, 96);
    padding: 1rem;
    border-radius: 10px;
    border: 4px solid white;
}

.contenedor-formulario h2{
    color: white;
    text-shadow: 0 0 10px rgb(6, 113, 81);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.datos {
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border: 4px dashed rgb(0, 159, 96);
}

.datos label {
    color: rgb(0, 159, 96);
    padding: 0.8rem 0;
    font-weight: 700;
}

.datos input {
    height: 30px;
    width: 300px;
    font-size: 14px;
    border: 2px solid rgb(182, 214, 0);
    padding: 4px;
    border-radius: 5px;
}

#texto__elegir__cromo {
    text-align: center;
    margin-top: 2rem;
    color: rgb(0, 159, 96);
}

.contenedor-cromos {
    background-color: rgb(200, 233, 18);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.contenedor-cromos img {
    width: 48px;
    height: 48px;
}

.opcion-outter {
    background-color: white;
    border: 4px dashed rgb(130, 185, 20);
    border-radius: 10px;
    padding: 0.5rem;
    text-align: center;
    animation: 2s ease-in-out;
    transition: all 0.15s;
}

.opcion-outter:hover {
    background: rgb(0, 159, 96);
    color: white;
    font-weight: 700;
    box-shadow: 0 0 10px rgb(38, 140, 10);
    border-color: white;
}

.opcion-inner {
    display: flex;
    flex-direction: column;
    place-items: center;
}

#formulario .boton-intro {
    width: 400px;
    align-self: center;
    margin: 0 auto;
    margin-top: 2rem;
    text-align: center;
    font-size: 40px;
    cursor: default;
}

.cromo_nombre_rojo {
    color: rgb(184, 28, 28);
    font-weight: 600;
}
.cromo_nombre_azul {
    color: rgb(22, 76, 150);
    font-weight: 600;
}
.cromo_nombre_amarillo {
    color: rgb(147, 147, 15);
    font-weight: 600;
}
.cromo_nombre_verde {
    color: green;
    font-weight: 600;
}
.cromo_nombre_naranja {
    color: rgb(184, 130, 29);
    font-weight: 600;
}
.cromo_nombre_morado {
    color: purple;
    font-weight: 600;
}