.identity-choice {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.identity-choice__item {
    position: relative;
    display: flex;
    min-height: 84px;
    align-items: flex-start;
    gap: 10px;
    padding: 13px;
    border: 1px solid #dbe8e6;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.identity-choice__item:hover {
    border-color: #82c9bf;
    background: #f7fcfb;
}

.identity-choice__item:has(input:checked) {
    border-color: #218b7f;
    background: #effaf7;
    box-shadow: 0 0 0 2px rgba(33, 139, 127, .1);
}

.identity-choice__item:has(input:focus-visible) {
    outline: 3px solid rgba(33, 139, 127, .2);
    outline-offset: 2px;
}

.identity-choice__item input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.identity-choice__mark {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 11px;
    background: #e6f6f2;
    color: #08786e;
    font-size: 14px;
    font-weight: 850;
}

.identity-choice__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.identity-choice__copy strong {
    color: #1f4243;
    font-size: 14px;
}

.identity-choice__copy small {
    color: #718887;
    font-size: 11px;
    line-height: 17px;
}

@media (max-width: 560px) {
    .identity-choice { grid-template-columns: 1fr; }
    .identity-choice__item { min-height: 72px; }
}

.auth__card--register { max-width: 620px; }
.identity-choice--three { grid-template-columns: 1fr; }
.identity-choice--three .identity-choice__item { min-height: 72px; }