html {
    height: 100%;
    width: 100%;
}
body {
    font-family: Arial, sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

.padron2026header {
    background: #E4191A;
    height: 5rem;
    box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.3);
    width: 100%;
}

.padron2026logo {
    height: 5rem;
}

.padron2026title {
    color: #E4191A;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    padding: 2rem 0 1rem;
    text-align: center;
}

.padron2026subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    text-align: center;
}

.wrapperp2026 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.padron2026search {
    display: flex;
    flex-direction: column;
    width: 20rem;
}

.fgroup {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 2rem
}

.fgroup > span:first-child {
    display: inline-block;
    background: #ddd;
    flex-grow: 0;
    padding: 0.25rem;
    border: solid 1px #aaa;
    border-radius: 0.5em 0 0 0.5rem
}

.fgroup > span:nth-child(2) {
    display: inline-block;
    flex-grow: 1;
}

.fgroup > span:nth-child(2) input {
    width: 100%;
    height: 88%;
    border: solid 1px #aaa;
    border-radius: 0 0.5rem 0.5rem 0;
}

.fsend {
    margin-top: 1em;
    text-align: center;
}

.fsend > span {
    color: white;
    cursor: pointer;
    background: #b9332f;
    border: solid 1px #99332f;
    border-radius: 0.35rem;
    display: inline-block;
    padding: 0.25em 1.5em;
}

.ferror {
    margin-top: 1em;
    text-align: center;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.ferror.show {
    opacity: 1;
    height: 2rem;
}

.ferror > span {
    color: #d9534f;
}

.fresultcontainer {
    display: flex;
    overflow: hidden;
    align-items: center;
}

@media screen and (max-width: 576px) {
    .fresultcontainer {
        flex-direction: column;
        width: 22rem;
    }
}

@media screen and (min-width: 577px) {
    .fresultcontainer {
        flex-direction: row;
        gap: 1rem;
    }
}

.fresult {
    margin-top: 1em;
    text-align: center;
    width: 18rem;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.fresult.show {
    opacity: 1;
    height: 47.25rem;
}

.fresulttitle {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.5em;
    background: #b9332f;
    color: white;
}

.fresultlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fresultitem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5em;
    border: solid 1px #ddd;
    border-top: none;
}

.fresultitemtitle {
    margin-bottom: 0.5em;
}

.fresultitemtext {
    font-size: 1.2rem;
    font-weight: bold;
}