@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.controlPremios, .controlId {
    width: 100%;
    margin-inline: auto;
    text-align: center;
    box-sizing: border-box;
}

.controlPremios {
    margin-bottom: 10vh;
}

.controlId {
    margin-bottom: 5vh;
}

.controlPremios h2, .controlId h2 {
    font-family: 'Anton';
    font-weight: 600;
    color: #47160d;
    font-size: 2.8em;
    margin: 0;
    margin-bottom: 3vh;
}

.firstRow {
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    width: 450px;
    text-align: center;
}

.premioEditar {
    display: flex;
    width: 450px;
    margin: 0 auto;
}

.rowColumn {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.firstRow .rowColumn:first-of-type, .premioEditar .rowColumn:first-of-type {
    justify-content: flex-start;
}

.controlPremios p {
    font-family: 'Montserrat';
    font-weight: 400;
    color: #47160d;
    font-size: 1.2em;
}

.firstRow p {
    font-weight: 600;
}

.controlId p {
    font-family: 'Montserrat';
    font-weight: 400;
    color: #47160d;
    font-size: 1.2em;
}

.controlPremios input[type=number] {
    border-radius: 6px;
    width: 60px;
    font-size: 1em;
    padding: 0.5em;
    font-family: 'Montserrat';
}

.controlPremios input[type="checkbox"] {
    accent-color: #47160d;
    cursor: pointer;
}

.controlPremios button, .controlId button {
    font-family: 'Anton';
    color: #fff9e6;
    background-color: #cb4a21;
    border: 1px solid #47160d;
    border-radius: 4px;
    width: 100%;
    font-size: 1.6em;
    cursor: pointer;
    height: 2.5em;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
}

.controlPremios button:hover, .controlId button:hover {
    transform: scale(1.1);
}

.enviar {
    margin: 0 auto;
    width: 210px;
    position: relative;
    margin-top: 3.5em;
}

#formulario {
    width: 40%;
    margin: 0 auto;
}

.decoL {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-132%, -30%);
    width: 200px;
    height: 200px;
    z-index: -1;
}

.decoR {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(20%, -30%);
    width: 200px;
    height: 200px;
    z-index: -1;
}

.decoL img, .decoR img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

@media only screen and (max-width: 500px) {
    .premioEditar, .firstRow {
        width: 330px;
    }
    .rowColumn {
        width: 110px;
    }
    .controlPremios h2, .controlId h2 {
        font-size: 1.8em;
    }
    .controlPremios p, .controlId p {
        font-size: 1em;
    }
    .controlPremios button {
        width: 150px;
    }
    .controlPremios button, .controlId button {
        font-size:1.2em;
        padding: 0.4em;
    }
    .decoL, .decoR {
        width: 125px;
        height: 125px;
    }
    .enviar {
        margin-top: 2em;
        margin-bottom: 2em;
        width: 150px;
    }
}