.voucher-page {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat';
    row-gap: 20px;
    text-align: center;
    padding: 30px 0;
    width: 80%;
    margin: 0 auto;
}

.voucher-page__header {
    font-size: 18px;
    line-height: 27px;
}

.voucher-page__form-header {
    font-weight: 600;
    font-size: 16px;
}

.voucher-page__form-text {
    font-size: 13px;
}

.voucher-page__text {
    font-size: 13px;
    font-weight: 600;
}

.voucher-page__text p:first-of-type {
    margin: 0;
}

.voucher-page__text p {
    width: 100%;
    margin: 4px 0;
    line-height: 18px;
}

.voucher-page__image {
    min-width: 0;
    width: 100%;
    max-width: 750px;
}

.voucher-page__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}

.currency-input {
    display: flex;
    align-items: center;
    column-gap: 3px;
    border: 1px solid black;
    padding-left: 15px;
}

.currency-input:focus-within {
    border: 1px solid #939393;
}

.currency-input__input {
    border: none;
    padding: 0 !important;
    height: 38px;
    font-size: 16px;
    font-family: 'Montserrat';
}

.currency-input__input:focus {
    outline: none;
}

.voucher-page__submit {
    font-family: 'Montserrat';
    text-transform: uppercase;
    border-radius: 7px;
    color: white;
    padding: 16px 40px !important;
    border: none;
    cursor: pointer;
}

.voucher-page__lower {
    display: grid;
    grid-gap: 40px;
}

.voucher-list {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    column-gap: 10px;
    row-gap: 30px;
    max-width: 100%;
}

.voucher-list__voucher {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.voucher-list__print {
    font-family: 'Montserrat';
    text-transform: capitalize;
    border-radius: 7px;
    font-size: 15px;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin: 10px auto 0;
}

.voucher-list__print:hover {
    text-decoration: none;
}

.voucher-list__print-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 5px;
}

@media screen and (min-width: 620px) {
    .voucher-page {
        width: 90%;
    }

    .voucher-page__lower {
        grid-template-columns: 5fr 3fr;
        grid-gap: 30px;
    }

    .voucher-page__form {
        margin-top: 10%;
        row-gap: 35px;
    }
}

@media screen and (min-width: 760px) {
    .voucher-list {
        flex-direction: row;
    }

    .voucher-list__voucher img {
        scale: 80%;
    }
}

@media screen and (min-width: 1100px) {
    .voucher-page__lower {
        grid-template-columns: 5fr 3fr;
        grid-gap: 70px;
    }

    .voucher-list {
        column-gap: 30px;
    }

    .voucher-list__voucher img {
        scale: 100%;
    }
}
