.form-buy-info-container {
    width: 50vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2vh;
    margin-bottom: 2vh;
    background: rgb(140,140,160);
}

.form-buy-info-top-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
}

.top-seperator-div-line {
    width: 50%;
    border-right: 1px solid black;
}

.top-seperator-div {
    width: 50%;
}

.form-buy-title {
    margin: 8px;
    font-family: sans-serif;
    text-align: center;
}

.form-buy-price {
    text-align: center;
    font-family: sans-serif;
    color: white;
}

.form-buy-info-text-container {
    width: 100%;
    border: 1px solid black;
    border-top: none;
}

.form-buy-info-text {
    text-align: center;
}

.form-buy-ingo-btn-container {
    width: 60%;
    display: flex;
    padding: 8px;
    justify-content: center;
    border: 1px solid black;
    border-top: none;
}

.free-form-purchase-btn {
    background: rgb(100,100,180);
    color: white;
    box-shadow: 2px 2px 4px black;
    transition-duration: 120ms;
}

.free-form-purchase-btn:hover {
    cursor: pointer;
    box-shadow: 1px 1px 3px black;
    transform: translateY(1px);
    background: rgb(80,80,180);
}