﻿html,
body {
    display: flex;
    justify-content: center;
    color: #FFF;
    margin: 0;
    padding: 0 !important;
    font-size: 16px;
    background-color: #202020;
    overflow: auto !important;
    font-family: "Poppins", sans-serif;
    width: 100vw;
    height: 100vh;
}


.container {
    padding: 2vw 3vw;
    max-width: 1000px;
}

.formReclamo {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    justify-content: center;
}

.encabezado {
    margin: 0 auto;
    text-align: center;
}


img {
    min-width: 300px;
    height: 10vh;
}


.fieldset {
    display: flex;
    border: 1px solid #D6FF52;
    border-radius: 20px;
    box-shadow: 0px 3px 7px #888888;
    padding: 20px;
    justify-content: center;
}


.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}


.txInput {
    border-width: 1px;
    color: white;
    padding: 0.7% 2%;
    border-radius: 5pt;
    background: #161616;
    height: 25px;
    font-family: 'Poppins';
}

.DDInput {
    border-width: 1px;
    color: white;
    padding: 0.7% 2%;
    border-radius: 5pt;
    background: #161616;
    height: 30px;
    max-width: 300px;
    font-family: 'Poppins';
}

.inputInvalid {
    border-style: inset;
    border-color: darkred;
}


.txInputFile {
    max-width: 250px;
}


.divInput {
    color: #D6FF52;
    display: grid;
    min-width: 250px;
}


p {
    margin: 0;
    font-size: 0.8rem;
}


.txtArea {
    color: white;
    padding: 0.7% 2%;
    border-radius: 5pt;
    background: #161616;
    justify-self: center;
    max-width: 700px;
    height: 100px;
    resize: none;
    min-width: 250px;
    width: 70vw;
}

.oculto {
    display: none !important;
}

.btn {
    max-width: 200px;
    border-radius: 10px;
    border: 1px solid;
    font-size: 14px;
    font-weight: bolder;
    cursor: pointer;
    height: 35px;
    justify-items: center;
}

.btnPrimary {
    background: #D6FF52;
    color: #111;
}

    .btnPrimary:hover {
        background: #202020;
        color: #d6ff52;
    }

    .btnPrimary:active {
        border-color: #4d5c1e;
        background: #D6FF52;
        color: #202020;
    }

    .btnPrimary:disabled {
        background-color: rgba(19, 1, 1, 0.3);
        color: rgba(255, 255, 255, 0.3);
        border-color: rgba(195, 195, 195, 0.3);
        cursor: default;
    }


.btnSecondary {
    background: #111;
    color: white;
}

    .btnSecondary:hover {
        background: #333;
    }

    .btnSecondary:active {
        background: #000;
    }


.loader {
    display: flex;
    border: 3px solid #777777;
    border-top: 3px solid #D6FF52;
    border-radius: 100%;
    height: 12px;
    width: 12px;
    animation: spin 0.75s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


#divEnviado {
    display: grid;
    gap: 30px;
    margin-top: 1vh;
    text-align: center;
    justify-items: center;
}

    #divEnviado i {
        color: #00AA00;
        font-size: 100px;
        opacity: 1;
        animation: easein-animation 0.5s cubic-bezier(0.55, 0.09, 0.68, 0.53);
    }


@keyframes easein-animation {
    from {
        opacity: 0; /* Empieza invisible */
        transform: scale(0.5); /* Empieza más pequeño */
    }

    to {
        opacity: 1; /* Termina visible */
        transform: scale(1); /* Termina en tamaño normal */
    }
}


.aspNetHidden {
    display: none;
}



/* MODAL CONFIRMACION */
/* Estilos del modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Contenido del modal */
.modal-content {
    display: grid;
    gap: 15px;
    border-radius: 20px;
    text-align: center;
    color: #FFF;
    font-size: 16px;
    background-color: #202020;
    margin: 15% auto;
    padding: 20px;
    border: 2px solid #888;
    width: 80%;
    max-width: 500px;
    animation: easein-animation 0.7s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%) forwards;
}

    .modal-content i {
        color: #3fc3ee;
        font-size: 75px;
    }

/* Botones del modal */
.modal-buttons {
    display: flex;
    justify-content: space-around;
    min-width: 250px;
}

/* Boton para cerrar el modal */
.close-btn {
    position: absolute;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    top: 10px;
    right: 20px;
}

    .close-btn:hover,
    .close-btn:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

