.mainSMS{
    padding: 0 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: calc(4.3125rem + 2rem); /*altura do header mais 2 rem*/
    height: 100vh;
    color:#7f7f7f;
}
.mainSMS h2{
    font-size: 2rem;
    color: #014598;
    font-weight: bold;
}
.form_successmessage{
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.form_errormessage{
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.form_infomessage{
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.form_confirmacao{
    width: 100%;
}
.form_confirmacao form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding:1rem 1rem 1.5rem 1rem;
    border-bottom: 2px solid #7f7f7f;
    width: 70%;
}
.form_confirmacao form input{
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: .5rem;
    border-color: #999999;
    border-top: none;
    border-right: none;
    margin-top: 1rem;
}
.form_confirmacao form h4{
   margin-top: 1rem;
}
.form_confirmacao form button{
    margin-top: 1rem;
    padding: .5rem 2rem;
    border: unset;
    color: #fff;
    background-color: #00C2D9;
    border-radius: 9999px;
    cursor: pointer;
    width: 45%;
 }
 .confirmacao{
    margin-top: 1rem;
 }
 .confirmacao .buttons{
    margin-top: 1rem;
 }
 .confirmacao .buttons button{
    padding: .5rem 2rem;
    border: unset;
    color: #fff;
    background-color: #014598;
    border-radius: 9999px;
    cursor: pointer;
    margin: .5rem;
 }
 .confirmacao h4{
    margin-top: 1rem;
 }
 .successMessage{
    background-color: #e4e4e5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding:2rem 1rem ;
    border-radius: 1rem;
}
.errorMessage{
    background-color: #f8d7da;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding:2rem 1rem ;
    border-radius: 1rem;
}
.infoMessage{
    background-color: #d1ecf1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding:2rem 1rem ;
    border-radius: 1rem;
}.successMessage p{
    margin-top: .5rem;
} 
.errorMessage p{
    margin-top: .5rem;
} 
.infoMessage p{
    margin-top: .5rem;
}
@media (max-width: 950px){
    .form_successmessage{
        flex-direction: column;
    }
    .form_errormessage{
        flex-direction: column;
    }
    .form_infomessage{
        flex-direction: column;
    }
    .form_confirmacao form{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: unset;
        padding-bottom: 1.5rem;
        border-bottom: 2px solid #7f7f7f;
        width: 100%;
    }
    .confirmacao .buttons{
       display: flex;
       justify-content: space-between;

     }
     .confirmacao .buttons button{
        width: 45%;
        margin: unset;
        
      }
    .confirmacao h4{
        text-align: center;
     }
     .successMessage{
        margin-top: 1rem;
     }
     .errorMessage{
        margin-top: 1rem;
     }
     .infoMessage{
        margin-top: 1rem;
     }

}