*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:linear-gradient(135deg,#0F172A,#1E3A8A);

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

}

.container{

    width:380px;

    background:white;

    border-radius:25px;

    padding:30px;

    text-align:center;

    box-shadow:0px 20px 40px rgba(0,0,0,.35);

}

.logo{

    width:220px;

    margin-bottom:20px;

}

h1{

    color:#1E3A8A;

    margin-bottom:10px;

}

h3{

    color:#777;

    font-size:15px;

    margin-bottom:30px;

    font-weight:normal;

}

button{

    width:100%;
    padding:16px;
    margin-top:15px;
    border:none;
    border-radius:15px;
    background:#2563EB;
    color:white;
    font-size:17px;
    cursor:pointer;
    transition:.3s;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

}

button:hover{

    transform:scale(1.03);

    background:#1D4ED8;

}

#mensagem{

    margin-top:20px;

    color:#16A34A;

    font-weight:bold;

    height:20px;

}

.logo{
    animation: aparecer 1s ease;
}

@keyframes aparecer{

    from{
        opacity:0;
        transform:translateY(-20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.info{

    margin-bottom:25px;

}

.info p:first-child{

    color:#16A34A;

    font-weight:bold;

    margin-bottom:8px;

}

.info p:last-child{

    color:#777;

    font-size:14px;

}

.pix-area{
    background:#F8FAFC;
    border:1px solid #E2E8F0;
    border-radius:18px;
    padding:20px;
    margin-bottom:10px;
}

.pix-area h2{
    color:#1E3A8A;
    font-size:20px;
    margin-bottom:15px;
}

.qrcode-pix{
    width:190px;
    max-width:100%;
    border-radius:12px;
    margin-bottom:12px;
}

.pix-area p{
    color:#64748B;
    font-size:14px;
}

hr{

    margin:30px 0 20px;

    border:none;

    border-top:1px solid #E5E7EB;

}

footer p{

    color:#1E3A8A;

    font-weight:bold;

    margin-bottom:8px;

}

footer small{

    color:#9CA3AF;

}