body{
    background-color: antiquewhite;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}

.payment{
    background-image: url("../Images/Payments\ Image.png");
    width: 100%;
    height: auto;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .payment {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        background-color: antiquewhite;
        background-image: none;
        height: auto;
    }
}

.left-column{
    display: flex;
    flex-direction: column;
    width: 30%;
    height: 100%;
    padding-left: 1%;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .left-column {
        width: 80%;
        align-self: center;
        justify-self: center;
        padding-left: 0%;
    }
}

#goBackButton{
    background:linear-gradient(45deg,#920000 20%,#d20000);
    color: #fff;
    font-size: 1.3rem;
    height: 7vh;
    width: 100%;
    border-radius: 20px;
    cursor: pointer;
}

.payment img{
    width: 70%;
    border-radius: 20px;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .payment img {
        width: 70%;
    }
}

.transbank-payment{
    width: 75%;
}

.transbank-payment form input{
    width: 100%;
}

