input {
    display: block;
    margin: 10px auto;
    padding: 10px;
    font-size: 16px;
    width: 80%;
    max-width: 300px;
}
button {
    background-color: #009EE3;
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}
button:hover {
    background-color: #007bb5;
}
#statusPagamento {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    color: red;
}
#linkAposPagamento {
    margin-top: 20px;
    display: none;
}
#linkAposPagamento a {
    text-decoration: none;
    color: white;
    background-color: green;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}
