.profile {
    position: relative;

    flex-shrink: 1;

    height: 100%;
    margin: 1vh 1vw;

    border-radius: 50%;
    border: var(--b1) solid 1px;
}

.profile img {
    display: block;

    aspect-ratio: 1/1;
    width: auto; height: 100%;

    object-fit: cover;
}

.profile h3 {
    display: flex;

    position: absolute;
    top: 0; left: 0;

    width: 100%; height: 100%;

    color: #ff0000;
    background-color: #0000007F;

    align-items: center;
    justify-content: center;
    text-align: center;
}

.password {
    margin: 1vh 0 0;
}

.password span {
    text-decoration: underline;
    filter: brightness(0.75);
}

.login {
    width: 100%;
    margin: 3vh 0;

    background-color: var(--bg3);
}