.a-body {
    display: flex;
    overflow: hidden;
    margin: 0;
    font-family: Roboto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.a-body-right {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
    min-height: 0;
}

#login_img {
    max-width: 150px;
    background-color: white;
    padding: 4px;
    border-radius: 4px;
}

.a-body-content {
    display: flex;
    flex-direction: column;
    background-color: #F3F4F7;
    flex-grow: 1;
    overflow: auto;
    background-size: cover;
    align-items: center;
    color: #6E727A;
    font-size: 14px;
    position: relative;
    gap: 16px;
    padding: 16px;
}

#logo_psychology {
    display: flex;
    justify-content: center;
    gap: 8px;
    min-height: 32px;
    min-width: 200px;
    align-items: center;
}

#navbar_image_user {
    display: flex;
    justify-content: center;
    align-items: center;
    
    height: 35px;
    width: 35px;
    border-radius: 50%;
    
    margin-left: 45px;
    
    background-color: var(--light);
    font-size: 30px;
    color: var(--dark);
    
    .i-icon {
      font-variation-settings:
      'FILL' 1
    }
}

@media (max-width: 850px) {
    .a-body-content {
        gap: 8px;
        padding: 8px;
    }
}
