#title-form {
    font-family: Helvetica, sans-serif;
}

.title-perg {
    font-family: Helvetica, sans-serif;
    font-weight: 700;
    text-align: center;
    padding-top: 1%;
    
}

#form-chat {
    display: flex;
    flex-direction: column;
    
}

#form-contact {
    margin-left: 3%;
    margin-right:3%;
    background-color: #d0d0d0;
}

#form-card {
    background-color: #ffffff;
    padding: 3% 2%;
    margin: 2% 0;
    border-radius: 18px;

}

.form-show{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 18px;
    padding: 2% 0;
    gap: 1em;
}

.form-show h3 {
    text-align: center;
    font-size: 1.2em;
}

#logo-chat {
    width: 150px;
}

.align-radio {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.3em
}

.btn-sub {
    border-radius: 12px;
    background-color: #467ff7;
    color: #fff;
    font-weight: 400;
    border: none;
    padding: 10px 10px;
}

.div-alert{
    display: flex;
    background-color: rgb(185, 238, 185) !important;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    margin: 4% 0;
}

@media screen and (max-width: 900px) {
    #logo-chat {
        width: 30%;
    }

    #form-card {

       display: flex;
       flex-direction: column;
       gap: 1em;
    }

    .form-show {
        padding: 4%;
    }
    
}