
/* ========================= */

.profile-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: #111;
    margin-bottom: 30px;
}

/* ========================= */

.profile-container {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.left-panel {
    width: 265px;
    flex-shrink: 0;
}

.edit-card {
    flex: 1;
}

/* =========================
   CARD UMUM
========================= */

.profile-card,
.account-card,
.edit-card {
    background: #fff;
    border-radius: 18px;
}

/* =========================
   FOTO PROFIL
========================= */

.profile-card {
    font-family: 'Poppins', sans-serif;
    padding: 22px;
    margin-bottom: 16px;
    text-align: center;
}

.profile-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.photo-wrapper {
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

.profile-photo {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    object-fit: cover;
}

.camera-btn {
    position: absolute;
    right: -8px;
    bottom: 5px;

    width: 52px;
    height: 52px;

    background: #109c9c;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 3px solid #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.camera-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.upload-btn {
    width: 80%;
    height: 38px;
    margin-top: 18px;

    border: 2px solid #0c9997;
    background: #fff;

    color: #0c9997;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;

    border-radius: 2px;
    cursor: pointer;
}

.upload-info {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    line-height: 1.5;
    margin-top: 10px;
    color: #555;
}

/* =========================
   INFORMASI AKUN
========================= */

.account-card {
    padding: 18px;
}

.account-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

.account-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.account-row:last-child {
    margin-bottom: 0;
}

.account-row span,
.account-row strong {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.badge {
    background: #dff4ee;
    color: #0c9997;

    min-width: 60px;
    text-align: center;

    padding: 4px 12px;
    border-radius: 4px;

    font-size: 11px;
    font-weight: 600;
}

.badge.active {
    background: #dff6de;
    color: #34a853;
}

/* =========================
   FORM KANAN
========================= */

.edit-card {
    padding: 24px 35px 28px;
    min-height: 525px;
}

.edit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;

    margin-bottom: 8px;
}

.input-box {
    position: relative;
}

.input-box input {
    width: 100%;
    height: 34px;

    border: 1px solid #d5d5d5;
    border-radius: 4px;

    padding: 0 40px 0 12px;
font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #455468;

    outline: none;
}

.input-box img {
    position: absolute;

    right: 12px;
    top: 50%;

    transform: translateY(-50%);

    width: 14px;
    height: 14px;
}

.save-btn {
    width: 100%;
    height: 45px;

    margin-top: 42px;

    border: none;
    border-radius: 4px;

    background: #0c9997;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px){

    .profile-container{
        flex-direction:column;
    }

    .left-panel{
        width:100%;
    }

}