﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    background: linear-gradient(to right, rgb(255, 161, 78), rgb(134, 255, 179));
    padding: 10px 0;
    z-index: 1000;
}

.container {
    width: 90%;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    width: 10%;
}

    .logo img {
        width: 55px;
    }

nav {
    width: 70%;
}

    nav ul {
        list-style: none;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
    }

        nav ul li {
            margin-right: 20px;
        }

            nav ul li a {
                text-decoration: none;
                color: black;
                font-size: 15px;
                font-weight: 600;
                transition: color 0.3s ease;
            }

                nav ul li a:hover {
                    color: #008000;
                    border-bottom: solid 1px rgb(134, 255, 179);
                    text-decoration: none;
                }

.register {
    width: 20%;
    text-align: right;
}

.register-btn {
    padding: 10px 20px;
    background-color: rgb(0, 128, 0);
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

    .register-btn:hover {
        background-color: rgb(0, 100, 0);
        color: #FFF;
        text-decoration: none;
    }


.sepBar1 {
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, rgb(211, 88, 0), rgb(0, 255, 101));
}

.gradientHolder {
    width: 100%;
    min-height: 100px;
    background: linear-gradient(to bottom, rgb(255, 223, 209), rgb(255, 255, 255));
    padding-top: 30px;
}

h1 {
    font-size: 28px;
    font-weight: 700;
}

    h1 span {
        color: rgb(236, 117, 47);
    }


.formHolder {
    width: 100%;
    min-height: 10px;
    display: table;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 5px;
}

    .formHolder label {
        width: 100%;
        font-size: 16px;
        font-weight: 700;
    }

    .formHolder label i {
        color: rgb(245, 0, 10);
        font-size: 14px;
    }

    .formHolder input, .formHolder select {        
        border-radius: 5px;
        border: solid 1px rgb(236, 117, 47);
        height: 40px;
        padding: 10px;
        font-weight: 600;
        color: #008000;
    }

    .formHolder input {
        width: 100%;
    }

    .formHolder select {
        width: 95%;
    }


.rblBoton-ln label {
    display: inline-block;
    margin: 5px;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 1);
    border: solid 1px rgba(0, 0, 0, 0.3);
    color: white;
    cursor: pointer;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
}

    .rblBoton-ln label i {
        color: #e68612;
        display: block;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 30px;
    }

    .rblBoton-ln strong {
        color: #000;
        display: block;
        text-align: center;
        font-size: 20px;
    }

    .rblBoton-ln small {
        color: rgba(0, 0, 0, 0.7);
        display: block;
        text-align: center;
        font-size: 14px;
    }

    .rblBoton-ln article {
        color: rgba(0, 0, 0, 0.9);
        display: block;
        text-align: center;
        font-size: 24px;
    }



.rblBoton-ln input[type="radio"] {
    display: none;
}

.rblBoton-ln label:hover {
    background-color: #29c453;
    color: #FFF;
}

    .rblBoton-ln label:hover i {
        color: #FFF;
    }

.rblBoton-ln input[type="radio"]:checked + label {
    background-color: rgba(186, 39, 119, 1);
    color: white;
}

    .rblBoton-ln input[type="radio"]:checked + label i {
        color: rgb(102, 12, 97);
    }


.actionButton {
    width: 100%;
    text-align: center;
}

    .actionButton a {
        background: rgb(34,195,69);
        background: linear-gradient(87deg, rgba(34,195,69,1) 0%, rgba(253,187,45,1) 100%);
        padding: 15px 40px;
        color: #000;
        border-radius: 20px;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .actionButton a i {
        font-size: 18px;
        color: #FFF;
    }

        .actionButton a:hover {
            text-decoration: none;
            background: rgb(34,170,195);
            background: linear-gradient(87deg, rgba(34,170,195,1) 0%, rgba(253,187,45,1) 100%);
        }

footer {
    width: 100%;
    min-height: 10px;
    display: table;
    background-image: url('https://cngcelam.haif.app/wp-content/uploads/2024/03/fondo-foot.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

    footer label {
        text-align: center;
        width: 100%;
        padding-top: 20px;
        font-size: 20px;
        font-weight: 700;
    }

        footer label a {
            color: rgb(204, 51, 102);
        }

            footer label a:hover {
                color: #008000;
                text-decoration: none;
            }



    footer img {
        width: 70%;
    }

    footer label small {
        width: 100%;
        text-align: center;
        display: block;
        font-size: 12px;
    }


.pagoOk, .pagoDeclined {
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    margin: 10px 0;
    border: 2px solid;
    width: 100%;
}

.pagoOk {
    background-color: rgba(23, 191, 110, 0.05);
    border-color: rgb(23, 191, 110);
}

    .pagoOk .resHolderRow:nth-child(odd) {
        background-color: rgba(23, 191, 110, 0.1);
    }

    .pagoOk .resHolderRow:nth-child(even) {
        background-color: rgba(23, 191, 110, 0.05);
    }

.pagoDeclined {
    background-color: rgba(245, 34, 168, 0.05);
    border-color: rgb(245, 34, 168);
}

    .pagoDeclined .resHolderRow:nth-child(odd) {
        background-color: rgba(245, 34, 168, 0.1);
    }

    .pagoDeclined .resHolderRow:nth-child(even) {
        background-color: rgba(245, 34, 168, 0.05);
    }

.resHolderRowIcon {
    padding: 10px;
    align-items: center;
    text-align: center;
}

.resHolderRow {
    padding: 10px;
    display: flex;
    align-items: center;
}

.resHolderRowIcon i {
    font-size: 30px;
}

.pagoOk .resHolderRowIcon i {
    color: rgb(23, 191, 110);
}

.pagoDeclined .resHolderRowIcon i {
    color: rgb(245, 34, 168);
}

.resHolderRow label {
    font-weight: bold;
    margin-right: 5px;
    width: 30%;
}

.pagerHolder {
    width: 100%;
    min-height: 10px;
    display: table;
    margin: 0 auto;
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 3%;
}

.pagerPrev {
    width: 20%;
    float: left;
    text-align: left;
}

.pagerText {
    width: 60%;
    float: left;
    text-align: center;
    padding-top: 7px;
}

    .pagerText label {
        font-size: 14px;
        color: rgba(0, 0, 0, 0.5);
        font-weight: 400;
    }

        .pagerText label b {
            font-weight: 700;
            color: #000;
        }

.pagerNext {
    width: 20%;
    float: left;
    text-align: right;
}



@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    nav {
        width: 100%;
        order: 3;
        display: none;
    }

        nav ul {
            flex-direction: column;
        }

    .register {
        width: 100%;
        order: 2;
        text-align: center;
        margin-bottom: 10px;
    }

    .logo {
        width: 100%;
        order: 1;
        text-align: center;
    }

        .logo img {
            max-width: 50%;
        }

    .menu-toggle {
        display: block;
        cursor: pointer;
        text-align: right;
    }

        .menu-toggle.active + nav {
            display: flex;
        }
}
