@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

* {
    box-sizing: border-box;

}

.popup {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    z-index: 9999;
}

.pagamento-btn {
    background-color: #47c386;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    margin: 10px;
    font-size: 14px;

}

.normal-btn{
    background-color: #c34747;
    color: white !important;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    margin: 10px;
    font-size: 14px;

    cursor: pointer;

}

strong {
  color: #c00;
}


.model-container {
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;
    opacity: 0;
    /* display: none; */

    transition: opacity 0.3s ease;
}

.model-container.show{
    pointer-events: auto;
    opacity: 1;
}


.model {
    
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 30px 50px;
    width: 600px;
    text-align: center;

}

.model h1{

    margin: 0;

}

.model p{
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.7;
}

.model input[type="submit"]{

    border: 0;

}

