body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;}
.formContainer {
    width: 100%;
    min-height: 100vh;
    display: flex;
    place-content: center;
    place-items: center;
    gap: 5%;
    flex-wrap: wrap;
    background-color: #c3c3c3;
    background-image: url(https://images.vexels.com/media/users/3/141614/isolated/preview/f09c09d7d398ec4e36a637732091a418-circulos-concentricos-vacios.png);
    background-size: 5%;
}

/* FORMULARIO CALCULAR PROCENTAJE */
.formContainer .form h1 {
    color: #57b284;
    font-size: 1.8rem;
}

.formContainer .form {
    width: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin: 20px;
    text-align: center;
    background-color: #434343;
    border-radius: 5px;
}
.formContainer .form .inputContainer {
    position: relative;
    width: 90%;
    height: auto;
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 5px;
}
.formContainer .form .inputContainer label {
    color: white;
    font-weight: bolder;
}
.formContainer .form .inputContainer input {
    width: 100%;
    height: 40px;
    border: none;
    font-size: 1.1rem;
    padding: 2px 10px;
    color: #434343;
    border-radius: 5px;
    box-sizing: border-box;
}
.formContainer .form .inputContainer p {
    width: 25px;
    height: 35px;
    color: #434343;
    font-size: 1.5rem;
    position: absolute;
    right: -8px;
    top: -14px;
    background-color: #57b284;
    padding: 15px 20px;
    border-radius: 50%;
    font-weight: bolder;
    border: solid 5px #434343;
}
.formContainer .form .buttonContainer {
    width: 90%;
    height: 40px;
    display: flex;
    gap: 5%;
}
.formContainer .form .buttonContainer .button {
    width: 75%;
    height: 40px;
    border: none;
    margin-top: 20px;
    border-radius: 5px;
    color: white;
    background-color: #57b284;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}
.formContainer .form .buttonContainer .buttonReset {
    width: 20%;
    height: 40px;
    border: none;
    margin-top: 20px;
    border-radius: 5px;
    color: white;
    background-color: #57b284;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}
.formContainer .form .texto {
    color: white;
    font-size: 1.2rem;
    font-weight: bolder;
    margin: 20px 0 0;
}
.formContainer .form .resultado {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 5px;
    font-size: 2rem;
    font-weight: bolder;
    margin: 5px 0 20px;
    color: #434343;;
}

/* FORMULARIO VALIDAR SUS CUPONES */
.formContainer .formCup h1 {
    color: #ecbf36;
    font-size: 1.8rem;
}

.formContainer .formCup {
    width: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin: 20px;
    text-align: center;
    background-color: #434343;
    border-radius: 5px;
}
.formContainer .formCup .inputContainerCup {
    position: relative;
    width: 90%;
    height: auto;
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 5px;
}
.formContainer .formCup .inputContainerCup label {
    color: white;
    font-weight: bolder;
}
.formContainer .formCup .inputContainerCup input {
    width: 100%;
    height: 40px;
    border: none;
    font-size: 1.1rem;
    padding: 2px 10px;
    color: #434343;
    border-radius: 5px;
    box-sizing: border-box;
}
.formContainer .formCup .inputContainerCup p {
    width: 25px;
    height: 35px;
    color: #434343;
    font-size: 1.5rem;
    position: absolute;
    right: -8px;
    top: -14px;
    background-color: #ecbf36;
    padding: 15px 20px;
    border-radius: 50%;
    font-weight: bolder;
    border: solid 5px #434343;
}
.formContainer .formCup .inputContainerCup p img {
    width: 50px;
    position: absolute;
    left: 8px;
    top: 8px;
}
.formContainer .formCup .buttonContainerCup {
    width: 90%;
    height: 40px;
    display: flex;
    gap: 5%;
}
.formContainer .formCup .buttonContainerCup .buttonCup {
    width: 75%;
    height: 40px;
    border: none;
    margin-top: 20px;
    border-radius: 5px;
    color: white;
    background-color: #ecbf36;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}
.formContainer .formCup .buttonContainerCup .buttonResetCup {
    width: 20%;
    height: 40px;
    border: none;
    margin-top: 20px;
    border-radius: 5px;
    color: white;
    background-color: #ecbf36;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}
.formContainer .formCup .textoCup {
    color: white;
    font-size: 1.2rem;
    font-weight: bolder;
    margin: 20px 0 0;
}
.formContainer .formCup .resultadoCup {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 5px;
    font-size: 2rem;
    font-weight: bolder;
    margin: 5px 0 20px;
    color: #434343;;
}