* {
  box-sizing: border-box;
}
body {
    background-color: #eeeeee;
    color: #333;
    margin: 0;
    font-family: sans-serif;
    overflow: hidden;
}

html, body {
  margin: 0;
  height: 100%;
  min-height: 100vh;
background: #1A4896;
background: linear-gradient(180deg,rgba(26, 72, 150, 1) 0%, rgba(34, 31, 32, 1) 100%);
}

img{
  width: 100%;
}

h1{
  text-align: center;
  color: white;
  padding-top: 50px;
}

.section{
  width: 100%;
padding: 50px;
}

.logo-iom{
    position: fixed;
    width: 200px;
    bottom: 30px;
    right: 30px;
}

.logo_center{
    margin: auto;
    width: 800px;
}
.row-flex{
    display: flex;
    height: 30vh;
    justify-content: center;
    align-items: center;
}
.row-input{
    width: 700px;
}
.mail-input{
    width: 100%;
    padding: 15px;
    font-family: sans-serif;
    font-size: 32px;
}
.label{
        color: white;
    font-family: sans-serif;
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.error-form{
    font-size: 25px;
    color: red;
    display: block;
    padding-top: 10px;
}

.button-submit{
    color: white;
    font-size: 40px;
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    margin-top: 30px;
    background: #ca307c;
    font-family: sans-serif;
    font-weight: 700;
}
.centerImg{
  width: 100%;
  max-width: 720px;
}

.hide {
    position: absolute;
    top: -9999px;
    left: -9999px;
}

.error-card {
    background-color: #e74c3c;     /* rojo fuerte */
    color: white;
    font-weight: bold;
    padding: 7px 10px;
    border-radius: 5px;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
}
.good-card {
    background-color: green;     /* rojo fuerte */
    color: white;
    font-weight: bold;
    padding: 7px 10px;
    border-radius: 5px;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
}

.claim-center{
  display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.claim-button{
      background-color: white;
    border-radius: 15px;
    color: darkgrey;
    padding: 8px 25px;
    width: 500px;
    font-weight: bolder;
    font-size: 36px;
}

.claim-button:hover{
  background-color: lightblue;
  color: white;
}

.claim-button.selected {
        background-color: lightblue; /* Verde o el color que prefieras */
        color: white;

    }


    .combo-status-container {
            background: #f9f9f9;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
    animation: fadeIn 0.3s ease-in-out;
    width: 80%;
    margin: auto;
    margin-top: 50px;
    }

    .combo-status-container h3 {
        margin-bottom: 10px;
    }

    .combo-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .combo-card {
        border-radius: 6px;
        font-weight: bold;
        color: white;
        /* min-width: 500px; */
        text-align: center;
        width: 100%;
        padding: 20px;
        font-size: 26px;
    }

    .combo-card.claimed {
        background-color: #28a745; /* Verde */
    }

    .combo-card.not-claimed {
        background-color: #dc3545; /* Rojo */
    }

    @keyframes fadeOut {
        to {
            opacity: 0;
            transform: translateY(-10px);
        }
    }

