.account-page {
    padding: 6rem 0 10rem;
}

/* Header Profile */
.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 4rem;
    border-bottom: 1px solid #000;
    margin-bottom: 4rem;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.avatar {
    width: 10rem;
    height: 10rem;
    border-radius: 2rem;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.greeting {
    font-size: 1.5rem;
    color: rgba(126, 126, 126, 1);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.user-name {
    margin: 0;
}

.btn-logout {
    border: 1px solid #000;
    background: transparent;
    padding: 0 2.5rem;
    border-radius: 3rem;
    font-weight: 500;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 5.5rem;
    line-height: 5.5rem;
}
button.btn-logout img {
    width: 2.5rem;
    object-fit: contain;
    margin-left: 1rem;
}

/* Layout Grid */
.account-layout {
    display: grid;
    grid-template-columns: 24.375rem 1fr;
    gap: 10rem;
}
aside.account-sidebar {
    padding-top: 5rem;
}
/* Sidebar Nav */
.account-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.account-nav li a {
    border: 1px solid #000;
    border-radius: 4rem;
    padding: 0 3rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.5rem;
    transition: 0.3s;
    display: inline-block;
    height: 4.875rem;
    line-height: 4.875rem;
    margin-bottom: 0;
    width: 100%;
    color: rgba(0, 0, 0, 1);
    text-decoration: none;
    text-align: center;
}

.account-nav li.active a {
    background: #000;
    color: #fff;
}

.account-nav li:not(.active) a:hover {
    background: #f7efef;
}

/* Main Form Area */
.form-title {
    text-align: left;
    margin-bottom: 4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.form-group input {
    border: 1px solid #000;
    border-radius: 4rem;
    padding: 0 3rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.5rem;
    transition: 0.3s;
    display: inline-block;
    height: 4.875rem;
    line-height: 4.875rem;
    margin-bottom: 0;
    width: 100%;
}
.form-group.full-width {
    margin-bottom: 4rem;
}

.form-actions {
    display: flex;
    justify-content: center;
}


@media (max-width: 1024px) {
    .account-header {
        display: block;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    .account-page {
        padding: 4rem 0;
    }
    .account-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    aside.account-sidebar {
        padding-top: 1rem;
    }
    .account-main {
        order: 1;
    }
    .user-name {
        font-size: 3rem;
    }
    button.btn-logout {
        margin-top: 2rem;
    }
    .form-title {
        text-align: left;
        margin-bottom: 2rem;
    }
    .form-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    .account-nav li a,
    .form-group input {
        padding: 0 2rem;
        cursor: pointer;
        font-weight: 500;
        font-size: 1rem;
        height: 4rem;
        line-height: 4rem;
    }
}
@media (max-width: 767px) {

}