body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    overflow-y: auto;
}


/* @font-face {
    font-family: 'Ethnocentric';
    src: url('/Resource/Fonts/ETHNOCENTRIC\ RG\ IT.TTF') format('truetype');
} */


.container {
    background: #2b2b2b;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow-y: auto;
}

#hex-grid {
    height: 100vh;
    background: #000;
}

#hex-grid .grid {
    position: absolute;
    top: 0;
    left: 0;
    background: url(../Resource/grid.svg)repeat;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: 500px;
}

#hex-grid .light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15em;
    height: 15em;
    filter: blur(15px);
    background: linear-gradient(90deg, #0083cf 0%, #003985 100%);
    z-index: 1;
}

#hex-grid .light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15em;
    height: 15em;
    filter: blur(15px);
    background: linear-gradient(90deg, #0083cf 0%, #003985 100%);
    z-index: 1;
    transition: transform 0.3s ease; /* Agrega una transición suave al movimiento */
}


#hex-grid .grid {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../Resource/grid.svg) repeat, linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: 500px;
  filter: url(#gradFilter); /* Aplica el filtro de degradado */
}

.background-square {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 136, 0, 0.705), rgba(255, 166, 0, 0.705), rgba(255, 136, 0, 0.705), rgba(255, 72, 0, 0.897), rgba(255, 60, 0, 0.897));
    z-index: 2;
}


/* ... tus estilos actuales ... */

.blue-square {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,rgba(219, 124, 0, 0.849), rgba(255, 145, 0, 0.849), rgba(255, 145, 0, 0.849), rgba(255, 145, 0, 0.849), rgba(255, 145, 0, 0.849), rgba(112, 45, 0, 0.89));
    z-index: 3;
    clip-path: polygon(0 0, 100% 0, 100% 20%, 71% 20%, 65% 12%, 52% 12%, 36% 12%, 30% 20%, 0 20%);
    box-shadow: 100px 100px 100px rgba(0, 0, 0, 0.801)
}

.shadow-square {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000069;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% 20%, 71% 20%, 65% 12%, 52% 12%, 36% 12%, 30% 20%, 0 20%);
    box-shadow: 100px 100px 100px rgba(0, 0, 0, 0.801);
    filter: blur(1000px);
    
}



.Container {
    width: 90%;
    max-width: 650px;
    padding: 28px;
    margin-top: 180px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.6);
    z-index: 4;
}

h2 {
    font-size: 26px;
    font-weight: bold;
    text-align: left;
    color: #fff;
    padding-bottom: 8px;
    border-bottom: 1px solid silver;
    font-family: 'Playfair Display', serif
}

.Content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0px;
}

.input-box {
    display: flex;
    flex-direction: column;
    /* Asegura que las etiquetas y los inputs se alineen en columna */
    width: 48%;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.input-box:nth-child(odd) {
    margin-right: 4%;
}

.input-box label,
.Eres-title {
    width: 100%;
    color: #fff;
    font-weight: bold;
    margin: 5px 0;
}

.Eres-title {
    font-size: 16px;
}

.input-box input {
    height: 40px;
    width: 100%;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
    box-sizing: border-box;
}

.input-box input:is(:focus,:valid) {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.input-box select {
    height: 40px;
    width: 100%;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
    box-sizing: border-box;
}

.input-box select:is(:focus,:valid) {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.Eres-category label {
    padding: 0 20px 0 5px;
    font-size: 14px;
}

.Eres-category {
    color: gainsboro;
}

.Eres-category label,
.Eres-category input {
    cursor: pointer;
}

.alert p {
    font-size: 14px;
    font-style: italic;
    color: #fff;
    margin: 5px 0;
    padding: 10px;
    line-height: 1.5;
    word-wrap: break-word;
}

.button-container {
    margin: 15px 0;
}

.button-container button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    display: block;
    font-size: 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    background-color: #000;
    cursor: pointer;
    transition: 0.3s;
}

.button-container button:hover {
    background-image: linear-gradient(to right, #61045f, #aa076b);
    transform: scale(1.05);
}

.button-container button:active {
    transform: scale(0.98);
}

/* Media Queries para dispositivos más pequeños */
@media (max-width: 768px) {
    h2 {
        font-size: 24px;
    }

    .Content {
        flex-direction: column;
    }

    .input-box {
        width: 100%;
    }

    .form-container {
        padding: 20px;
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 15px;
    }

    h2 {
        font-size: 22px;
    }

    .button-container button {
        font-size: 18px;
    }

    .input-box input,
    .input-box select {
        height: 35px;
    }

    .Eres-category label {
        padding: 0 5px 0 0px;
        font-size: 12px;
    }
}

