.step-connection {
    display: none;
    max-width: 534px;

}

.back-button {
    display: flex;
    align-items: center;
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: pointer;
    background: none;
    border: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.back-button:active {
    transform: translateX(-2px);
}

.back-button svg {
    margin-right: 6px;
    width: 20px;
    height: 20px;
}

.loader {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.loader img {
    width: 100px;
    height: 100px;
}

.selected-wallet-logo {
    width: 40px;
    height: 40px;
}

.selected-wallet-name {
    font-weight: 500;
}

/* Для плавной анимации перехода между шагами */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
} 