.color-white,
.color-white * {color:#fff;}
.w-100 {
    width: 100%;
}

.w-95 {
    width: 95%;
}

.w-90 {
    width: 90%;
}

.w-85 {
    width: 85%;
}

.w-80 {
    width: 80%;
}

.w-75 {
    width: 75%;
}

.w-70 {
    width: 70%;
}

.w-65 {
    width: 65%;
}

.w-60 {
    width: 60%;
}

.w-55 {
    width: 55%;
}

.w-50 {
    width: 50%;
}

.w-45 {
    width: 45%;
}

.w-40 {
    width: 40%;
}

.w-35 {
    width: 35%;
}

.w-30 {
    width: 30%;
}

.w-25 {
    width: 25%;
}

.w-20 {
    width: 20%;
}

.w-15 {
    width: 15%;
}

.w-10 {
    width: 10%;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.mx-auto,
.ml-auto {
    margin-left: auto;
}

.mx-auto,
.mr-auto {
    margin-right: auto;
}

#dados-pessoais {
    font-family: "Metropolis", sans-serif;
}

#dados-pessoais h3 {
    color: #fff;
}

#dados-pessoais .form-title {
    font-size: 16px;
    color: #404040;
    margin-bottom: 10px;
}

#dados-pessoais .forma-adesao,
#dados-pessoais .dados-basicos,
#dados-pessoais .dados-pessoais,
#dados-pessoais .dados-pagamentos {
    margin-bottom: 20px;
}

#dados-pessoais .avatar-img-wrapper {
    height: 160px;
    width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
}

#dados-pessoais .avatar-img-wrapper img {
    height: 100%;
    width: 100%;
}

#dados-pessoais .dados-basicos .col-left {
    padding: 0 15px;
}

#dados-pessoais .dados-basicos .col-right {
    padding: 0 15px;
}

#dados-pessoais .form-inputs-wrapper {
    margin-bottom: 16px;
    position: relative;
}

#dados-pessoais .form-labels {
    display: block;
    font-size: 10px;
    line-height: 1.4;
    color: #dedede;
}

#dados-pessoais .form-inputs {
    font-weight: bold;
    width: 100%;
    font-size: 14px;
    color: #fff;
    background-color: transparent;
    border: none;
    padding: 0 16px;
    border-bottom: 1px solid #6d6d6d;
}

#dados-pessoais .btn {
    background: transparent;
    border: 2px solid #fe2d2f;
    border-radius: 20px;
    color: #fe2d2f;
    text-transform: uppercase;
    font-size: 16px;
    font-family: "Metropolis";
    transition: .3s;
    padding: 10px 18px;
    text-decoration: none;
    line-height: 1;
    display: inline-block;
}

#dados-pessoais .btn:hover {
    color: #fff;
    background: #fe2d2f;
    transform: scale(1.05);
}

#dados-pessoais a {
    text-decoration: underline;
    color: #fff;
    font-size: 16px;
    display:none;
}

#dados-pessoais a:hover {
    color: #fe2d2f;
    text-decoration: none;
}

#dados-pessoais label.error {
    color: #fe2d2f;
}

#dados-pessoais.zp-login-container {
    max-width: 712px;
    margin: 0 auto;
}

#dados-pessoais.zp-login-container .form-login {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#dados-pessoais.zp-login-container a {
    text-decoration: none;
}

#dados-pessoais.zp-login-container p:not(:last-child) {
    margin-bottom: 10px;
}

#dados-pessoais.zp-login-container .form-labels {
    display: block;
    font-size: 10px;
    line-height: 1.4;
    color: #dedede;
}

#dados-pessoais.zp-login-container .form-inputs {
    font-size: 26px;
    border-bottom: 1px solid #fff;
    height: 56px;
}

#dados-pessoais.zp-login-container .form-inputs-wrapper input[type=checkbox] {
    display: none;
}

#dados-pessoais.zp-login-container .form-inputs-wrapper input[type=checkbox]+label {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 1;
}

#dados-pessoais.zp-login-container .form-inputs-wrapper input[type=checkbox]+label span {
    display: block;
    height: 20px;
    width: 20px;
    border: 1px solid #8b8d94;
    border-radius: 4px;
    position: relative;
    margin-right: 5px;
    cursor: pointer;
}

#dados-pessoais.zp-login-container .form-inputs-wrapper input[type=checkbox]+label span::after {
    content: "";
    height: 8px;
    width: 14px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    display: none;
    position: absolute;
    top: calc(50% - 7px);
    left: calc(50% - 7px);
}

#dados-pessoais.zp-login-container .form-inputs-wrapper input[type=checkbox]:checked+label span {
    background-color: #fe2d2f;
    border: 1px solid #fe2d2f;
}

#dados-pessoais.zp-login-container .form-inputs-wrapper input[type=checkbox]:checked+label span::after {
    display: block;
}

#dados-pessoais.zp-login-container .btn-submit {
    margin-left: auto;
    display: block;
}

.eye {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
}

@media screen and (max-width: 991px) {
    #dados-pessoais a {
        font-size: 12px;
    }

    #dados-pessoais .form-inputs {
        min-height: 30px;
    }

    #dados-pessoais .btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    #dados-pessoais .avatar-img-wrapper {
        height: 120px;
        width: 120px;
        margin-bottom: 30px;
    }

    #dados-pessoais .dados-basicos {
        flex-direction: column;
    }

    #dados-pessoais .dados-basicos .col-left,
    #dados-pessoais .dados-basicos .col-right {
        padding: 0;
    }
}

@media screen and (max-width: 767px) {
    #dados-pessoais .form-login {
        margin-bottom: 40px;
    }

    #dados-pessoais .form-inputs {
        font-size: 12px;
        line-height: 1.5;
    }

    #dados-pessoais.zp-login-container .form-inputs {
        font-size: 18px;
        min-height: 40px;
    }

    #dados-pessoais.zp-login-container .btn-submit {
        margin-right: auto;
    }

    #dados-pessoais.zp-login-container .form-inputs-wrapper input[type=checkbox]+label {
        font-size: 14px;
    }

    #dados-pessoais.zp-login-container .form-inputs-wrapper input[type=checkbox]+label span {
        height: 15px;
        width: 15px;
    }

    #dados-pessoais.zp-login-container .form-inputs-wrapper input[type=checkbox]+label span::after {
        height: 5px;
        width: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 6px);
    }
}

@media screen and (min-width: 992px) {
    .w-lg-100 {
        width: 100%;
    }

    .w-lg-95 {
        width: 95%;
    }

    .w-lg-90 {
        width: 90%;
    }

    .w-lg-85 {
        width: 85%;
    }

    .w-lg-80 {
        width: 80%;
    }

    .w-lg-75 {
        width: 75%;
    }

    .w-lg-70 {
        width: 70%;
    }

    .w-lg-65 {
        width: 65%;
    }

    .w-lg-60 {
        width: 60%;
    }

    .w-lg-55 {
        width: 55%;
    }

    .w-lg-50 {
        width: 50%;
    }

    .w-lg-45 {
        width: 45%;
    }

    .w-lg-40 {
        width: 40%;
    }

    .w-lg-35 {
        width: 35%;
    }

    .w-lg-30 {
        width: 30%;
    }

    .w-lg-25 {
        width: 25%;
    }

    .w-lg-20 {
        width: 20%;
    }

    .w-lg-15 {
        width: 15%;
    }

    .w-lg-10 {
        width: 10%;
    }

    .d-lg-flex {
        display: flex;
    }

    .align-items-lg-center {
        align-items: center;
    }

    .justify-content-lg-space-between {
        justify-content: space-between;
    }

    .flex-lg-wrap {
        flex-wrap: wrap;
    }

    .mx-lg-auto,
    .ml-lg-auto {
        margin-left: auto;
    }

    .mx-lg-auto,
    .mr-lg-auto {
        margin-right: auto;
    }
}

@media screen and (min-width: 768px) {
    .w-md-100 {
        width: 100%;
    }

    .w-md-95 {
        width: 95%;
    }

    .w-md-90 {
        width: 90%;
    }

    .w-md-85 {
        width: 85%;
    }

    .w-md-80 {
        width: 80%;
    }

    .w-md-75 {
        width: 75%;
    }

    .w-md-70 {
        width: 70%;
    }

    .w-md-65 {
        width: 65%;
    }

    .w-md-60 {
        width: 60%;
    }

    .w-md-55 {
        width: 55%;
    }

    .w-md-50 {
        width: 50%;
    }

    .w-md-45 {
        width: 45%;
    }

    .w-md-40 {
        width: 40%;
    }

    .w-md-35 {
        width: 35%;
    }

    .w-md-30 {
        width: 30%;
    }

    .w-md-25 {
        width: 25%;
    }

    .w-md-20 {
        width: 20%;
    }

    .w-md-15 {
        width: 15%;
    }

    .w-md-10 {
        width: 10%;
    }

    .d-md-flex {
        display: flex;
    }

    .align-items-md-center {
        align-items: center;
    }

    .justify-content-md-space-between {
        justify-content: space-between;
    }

    .flex-md-wrap {
        flex-wrap: wrap;
    }

    .mx-md-auto,
    .ml-md-auto {
        margin-left: auto;
    }

    .mx-md-auto,
    .mr-md-auto {
        margin-right: auto;
    }
}

#dados-pessoais .notice {
    background-color: #fe2d2f;
    margin-bottom: 15px;
}

#dados-pessoais .notice p {
    color: #fff;
    padding: 10px 30px;
    line-height: 1.25;
}