/*Поле с */
.form-control.form-control--registration.form-control--fake.device-code-found {
    height: auto;
    min-height: 56px;
    gap: 12px;
    cursor: default;
    box-shadow: none;
}
.device-code-found__main {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1 1 auto;
}
.device-code-found__check {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    display: block;
}
.device-code-found__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.device-code-found__title {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.device-code-found__value {
    color: #4CD964;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    word-break: break-all;
}
.device-code-found__info {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #fff;
    cursor: pointer;
}
.device-code-found__info svg {
    display: block;
}
.device-code-found__tooltip {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    width: 240px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    color: #131313;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
    pointer-events: none;
}
.device-code-found__info:hover .device-code-found__tooltip,
.device-code-found__info:focus .device-code-found__tooltip {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 575px) {
    .form-control.form-control--registration.form-control--fake.device-code-found {
        height: auto;
    }
}