/* Account Page Styles */
body {
    display: block !important;
}

/* Fixed height for all form labels to ensure proper alignment */
.account-step-page .input-label,
.account-step-page .custom-select-label,
.account-step-page .radio-group-label,
.account-step-page .select-label {
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.25rem;
}


.account-page {
    width: 90rem;
    background: white;
    margin: 0 auto;
    display: flex;
    gap: 14rem;
    align-items: flex-start;
    justify-content: space-around;
    padding: 3rem 5rem 0 5rem;
}

.account-left {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.account-right {
    align-self: flex-start;
    display: flex;
    justify-content: flex-start;
    /* margin-top: 4rem; */
}

.account-title {
    color: #121212;
    font-family: Urbanist;
    font-size: 2rem;
    font-weight: 800;
    line-height: 110%;
    margin-bottom: 1.5rem;
}

.account-description {
    color: #121212;
    font-family: Urbanist;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 2.5rem;
}

.profile-completion-block {
    width: 311px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.completion-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.completion-circle {
    width: 100%;
    height: 100%;
}

.completion-circle circle:last-child {
    transition: stroke-dashoffset 0.5s ease-in-out;
}

.completion-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.completion-text {
    color: #121212;
    font-family: Urbanist;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 110%;
}

.completion-subtext {
    color: #000;
    font-family: Urbanist;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 110%;
    opacity: 0.45;
}

.account-image {
    width: 28.5625rem;
    height: 28.5625rem;
    position: fixed;
    top: 75%;
    left: 20%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.account-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.account-card {
    width: 343px;
    padding: 24px;
    background: white;
    box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.06);
    border-radius: 31.40px;
    outline: 1.50px rgba(18, 18, 18, 0.10) solid;
    outline-offset: -0.75px;
}

.account-navigation {
    display: flex;
    flex-direction: column;
}

.account-nav-item {
    padding: 16px;
    border-bottom: 1.50px rgba(18, 18, 18, 0.10) solid;
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 0 8px;
}

.account-nav-item:last-child {
    border-bottom: none;
}

.account-nav-item:hover {
    background-color: rgba(115, 188, 232, 0.15);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(115, 188, 232, 0.2);
}

.nav-item-text {
    flex: 1;
    color: #121212;
    font-size: 20px;
    font-family: Outfit;
    font-weight: 500;
    line-height: 20px;
}

.nav-item-arrow {
    width: 0.5rem;
    height: 0.5rem;
    stroke-width: 2px;
    stroke: #121212;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .account-page {
        width: 100%;
        flex-direction: column;
        gap: 2rem;
        padding: 6.5rem 1rem 2rem 1rem;
        align-items: stretch;
        justify-content: flex-start;
    }

    .account-left {
        max-width: 100%;
        order: 1;
    }

    .account-right {
        order: 2;
        align-self: stretch;
    }

    .account-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: left;
    }

    .account-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .profile-completion-block {
        width: 100%;
        max-width: 311px;
        margin: 0 auto 1.5rem auto;
    }

    .account-image {
        display: none;
    }

    .account-card {
        width: 100%;
    }

    .nav-item-text {
        font-size: 16px;
        text-align: left;
    }

}

/* Account actions styles for desktop */
.account-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    margin-top: 2rem;
}

/* Specific button styles for account page */
.account-continue-btn {
    display: flex;
    padding: 0.75rem 1rem 0.75rem 1.125rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    flex: 1 0 0;
    border-radius: 6.25rem;
    background: var(--Negro, #121212);
    color: var(--Blanco, #FFF);
    text-align: center;
    font-family: Outfit;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.02rem;
    border: none;
    cursor: pointer;
}