*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#container{
    overflow-x: hidden;
    background-color: #f2f2f2;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
}

.titulo,
.texto {
    text-align: center;
}
.titulo{
    font-weight: bolder;
    margin-bottom: 15px;
}
.texto{
    color: #777 ;
    line-height: 1.6;
    justify-content: space-between;
    text-align: center;
    width: 90%;
    max-width: 500px;  
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 14px;
    margin-left: 10px;
}
.email{
    font-family: 'Inter', sans-serif;
    width: 90%;
    max-width: 420px; 
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 12px;
    margin-bottom: 15px;
    background: white;
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.03),
            0px 8px 12px 0px rgba(0, 0, 0, 0.08);
}
.card{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bolder;
}

.btn{
    display: block;
    margin: 15px auto;
    background-color: #3b5bdb;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    border: 2px solid #3b5bdb;
    border-radius: 8px;
    align-items: center;
    font-weight: bolder;
    margin-top: 5px;
    
}
.btn:hover{
    background-color: #2f4bc7;
}
.disclamer{
    color:lightslategray ;
    justify-content: space-between;
    text-align: center;
    max-width: 500px;   
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 12px;
}
.author-info {
    font-size: 14px;
    text-align: center;
    margin-top: 16px;
    color: rgb(55, 65, 81);
}

.author-info a {
    text-decoration: none;
}
@media (max-width: 768px) {

    .email{
        width: 95%;
        padding: 15px;
    }

    .titulo{
        font-size: 22px;
    }

    .texto{
        font-size: 13px;
    }

    .btn{
        width: 100%;
    }

}