.client-profile-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* HEADER */
.client-profile-header {
    display: flex;
}

.client-profile-title {
    font-size: 24px;
}

/* BOX */
.client-profile-box {
    background: #fff;
    padding: 24px;
    border-radius: 4px;
}

/* GRID */
.client-profile-grid {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
}

/* COLUNA */
.client-profile-column {
    display: flex;
    width: calc(50% - 20px);
    flex-direction: column;
    gap: 10px;
}

/* SECTION */
.client-profile-section-title {
    font-size: 18px;
    margin-bottom: 8px;
}

/* LABEL */
.client-profile-label {
    font-size: 13px;
    font-weight: bold;
}

/* INPUT */
.client-profile-input {
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* ROW */
.client-profile-row {
    display: flex;
    gap: 12px;
}

/* AÇÕES */
.client-profile-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.client-profile-btn {
    padding: 12px 20px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.client-profile-btn.save {
    background: #3483FA;
    color: #fff;
    font-weight: bold;
}


@media screen and (max-width: 764px){
    .client-profile-column {
        width: 100%;
    }
}