body {
    background: linear-gradient(180deg, #f6cdd3 0%, #fbeaec 100%);
    font-family: 'Poppins', sans-serif;
}

.profile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.profile-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 80%;
    max-width: 1000px;
}

/* Sidebar kiri */
.profile-sidebar {
    background-color: #f4b6c2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.profile-sidebar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.profile-sidebar h3 {
    margin: 0;
    font-size: 20px;
    color: #fff;
}

.profile-sidebar p {
    color: #fdfdfd;
    margin-bottom: 25px;
    font-size: 14px;
}

.logout-btn {
    background-color: #fff;
    color: #d75a75;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.logout-btn:hover {
    background-color: #ffe3e9;
}

/* Bagian kanan */
.profile-main {
    flex: 2;
    padding: 50px;
    background-color: #fff;
}

.profile-main h2 {
    text-align: center;
    color: #b84f67;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.profile-main p.subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    font-size: 14px;
}

.profile-section {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 3px solid #f4b6c2;
}

.profile-section h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

input, textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #f4b6c2;
    box-shadow: 0 0 5px rgba(244, 182, 194, 0.4);
}

.save-btn {
    background-color: #f4b6c2;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
    float: right;
    cursor: pointer;
}

.save-btn:hover {
    background-color: #e79dad;
}
