.sectionCadastro{
    width: 100%;
    height: auto;
    background-color: transparent;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.formCadastro{
    width: 55%;
    background-color: transparent;
}
.container {
    padding: 16px;
    background-color: #fff;
}
.formCadastro label {
    color: #a0cf4f;
    font-size: 18px;
}
input[type=password], input[type=text], select {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
}
.formCadastro .infor {
    font-size: 12px;
    color: #333;
    line-height: 2;
}
hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}
.registerbtn {
    background-color: #04aa6d;
    color: #fff;
    padding: 16px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: .9;
    border-radius: 5px;
}
.formCadastro .registerbtn:disabled {
    color: rgba(0,0,0,.2);
    background: rgba(0,0,0,.04);
    border-radius: 8px;
    cursor: not-allowed;
}
.signin {
    text-align: center;
    font-size: 12px;
}
.alert-success{
    width: 80%;
    background: #a3de82;
    padding: 10px;
    margin: 10px auto;
    border-radius: 8px;
    color: white;
}