.field {
    display: flex;
    justify-content: space-between;
    align-items: center;


    border-bottom: 4px solid purple;
    padding: 10px 0;
}

.account_container {
    flex: 1;
    max-width: 800px;
}

.value {
    background: rgba(128, 0, 128, 0.2);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: bold;
}

.account_layout {
    display: flex;
    width: 80vw;
    max-width: 1200px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.profile_img {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
}

.img_layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

}

.account_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}