body{
    height: 100vh;
}

.img-ticket{
    width: 70%;
}

/* Sección 2 */
.formulariopromociones{
    background-color: #79ae45;
    color: white;
    width: 100%;
    height: 100%;
    border-radius: 1.5vw;
    padding: 2%;
}

.border{
    border: 5px solid white !important;
}

.formulariopromociones h1{
    text-align: center;
    padding-top: 2vh;
    padding-bottom: 2vh;
    margin: 0;
    font-weight: bold;
}

input[type="text"]{
    margin-bottom: 1vh;
}

select{
    margin-bottom: 1vh !important;
}

textarea{
    margin-bottom: 1vh !important;
}

input[type="file"]{
    margin-bottom: 1vh;
}

.btn-enviar{
    background-color: white;
    color: black;
    width: 25%;
    height: 5vh;
    border: none;
    border-radius: var(--bs-border-radius);
    position: relative;
    overflow: hidden;
    margin-top: 2vh;
    margin-bottom: 2vh;
}

.btn-enviar span {
    position: relative;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.btn-enviar::after{
    content:'';
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #e9552d;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s;
    padding: 0;
}

.btn-enviar:hover::after{
    transform: scaleX(1);
    transform-origin: bottom left;
}

.btn-enviar:hover span{
    color: white;
}

/* Sección 3 */
.texto-container{
    border: 4px solid black;
    border-radius: 1.5vw;
    padding: 2%;
    margin-top: 5vh !important;
    margin-bottom: 5vh !important;
}