/*
   _____                                    _
  / ____|                                  | |
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |
        |_|

    ------------
    Version 0.1.21

*/

/* Voucher */
.voucher{
    padding: 180px 0% 100px;
    margin-top: -80px;
}

.voucher h1{
    font-weight: 700;
}

.voucher__form{
    padding: 50px 0;
}

.voucher__input{
    display: flex;
    flex-direction: column;
}

.voucher__input label{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

input{
    border: none;
    outline: none;
    height: 70px;
    background: #e9e9e966!important;
    padding-left: 20px;
    margin-bottom: 40px;
    font-weight: 500;
    border-bottom: 2px solid #e9e9e966;
}

input:focus{
    border-bottom: 2px solid #eb23af;
}

.alert{
    border: none;
    padding: 25px;
    font-weight: 600;
    border-radius: 0px;
}

button{
    margin-top: 40px;
    border: none;
    outline: none;
    padding: 26px 70px;
    background: #246deb;
    color: white;
    font-weight: 600;
    border-radius: 0px;
    display: flex;
    gap: 40px;
    align-items: center;
    transition: .5s;
    box-shadow: 0px 20px 25px rgba(0, 14, 63, 0.15);
}

button:hover{
    background-color: #3f7fee;
    transition: .5s;
}

@media only screen and (max-width: 1100px) {
    .voucher{
        padding: 170px 6% 80px;
    }

    .voucher__form{
        padding: 50px 0;
    }

    .voucher-right{
        display: none;
    }
}