@import url("app.css");

.powered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.powered img,
.login .powered img {
    display: inline-block;
    width: 54px;
    height: 24px;
    max-height: 24px;
    object-fit: contain;
    margin: 0 0 0 2px;
}

.login-page {
    position: relative;
    padding-bottom: 88px;
}

.login-powered {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    color: var(--dark);
    font-size: 12px;
    white-space: nowrap;
}

.side-foot.powered {
    justify-content: flex-start;
}

.password-card {
    max-width: 650px;
}

.password-input {
    display: flex;
    align-items: stretch;
}

.field .password-input input {
    border-radius: 10px 0 0 10px;
}

.password-toggle {
    min-width: 88px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-left: 0;
    border-radius: 0 10px 10px 0;
    background: #e7f1ef;
    color: var(--dark);
    cursor: pointer;
    font-weight: 700;
}

.password-status {
    min-height: 20px;
    margin-top: 5px;
    font-size: 12px;
}

.password-status.ok {
    color: var(--light);
}

.password-status.error {
    color: var(--orange);
}

@media (max-width: 760px) {
    .login-powered {
        bottom: 16px;
    }
}
