/*
   _____                                    _
  / ____|                                  | |
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |
        |_|

    ------------
    Version 0.1.21

*/

/* Voucher */
.voucher{
    padding: 0px 3% 130px;
    margin-top: -80px;
}

.voucher-right{
    display: flex;
    justify-content: flex-end;
}

.voucher-right img{
    width: 500px;
}

.voucher__form{
    padding: 100px 0;
}

.voucher__input{
    display: flex;
    flex-direction: column;
}

.voucher__input label{
    font-size: 18px;
    font-weight: 600;
    color: white;
}

input{
    background: transparent;
    border: none;
    outline: none;
    height: 70px;
    border-bottom: 2px solid #2e1a1a;
    margin-bottom: 40px;
    font-weight: 500;
}

input:focus{
    border-bottom: 2px solid #ca5656;
}

.alert{
    border: none;
    padding: 25px;
    font-weight: 500;
    border-radius: 50px;
    background: #1e1515;
    color: #7fde7f;
}

.alert-danger{
    color: #ec6464;
}

button{
    margin-top: 40px;
    border: none;
    outline: none;
    padding: 26px 70px;
    background: linear-gradient(94.65deg, #371717 -21.3%, #5F1717 10.18%, #F24A4A 96.29%);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    display: flex;
    gap: 40px;
    align-items: center;
    transition: .5s;
    box-shadow: 0px 20px 25px rgba(0, 14, 63, 0.15);
}

button:hover{
    scale: 1.05;
    transition: .5s;
}

@media only screen and (max-width: 1100px) {
    .voucher{
        padding: 0px 7% 20px;
    }

    .voucher__form{
        padding: 90px 0;
    }

    .voucher-right{
        display: none;
    }
}