.toki-module-loader-wrapper {
    width: 100%;
    min-height: 660px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.toki--temp-expanded-wallet--container {
    height: 100%;
    min-height: 660px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
    overflow: hidden;
    position: relative;
    gap: 12px;
    padding-top: 70px;
    width: 100%;
}

.toki--temp-expanded-wallet--image-wrapper {
    position: absolute;
    width: 100%;
    top: 0;
    display: flex;
    padding: 14px;
    height: calc(100% - 260px);
    justify-content: center;
    align-items: center;
}

.toki--temp-expanded-wallet--image {
    display: block;
    background: transparent;
    height: 88px;
    width: 88px;
    object-fit: contain;
    z-index: 10;
}

.toki--temp-expanded-wallet--form-wrapper {
    padding: 0 8px;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    flex: 1;
    align-items: center;
}

.toki--temp-expanded-wallet--form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 10px;
    border-radius: 16px;
    min-height: 240px;
    overflow: auto;
}

.toki--temp-expanded-wallet--form-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    margin-top: 20px;
}

.toki--temp-expanded-wallet--title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.toki--temp-expanded-wallet--form-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 12px;
    gap: 20px;
}

.toki--temp-expanded-wallet--input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toki--temp-expanded-wallet--label {
    font-size: 14px;
    font-weight: 300;
}

.toki--temp-expanded-wallet--input {
    border-radius: 12px;
    width: 100%;
    height: 42px;
    padding: 9px 13px;
    transition: border-color 0.3s;
    outline: none;
    font-size: 16px;
}

.toki--temp-expanded-wallet--input:focus {
}

.toki--temp-expanded-wallet--button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 4px;
    width: 100%;
    cursor: not-allowed;
    transition: transform 0.3s;
    opacity: 0.5;
}

.toki--temp-expanded-wallet--button:enabled {
    cursor: pointer;
    transform: scale(1.02);
}

.toki--temp-expanded-wallet--button:active {
    transform: scale(0.9);
}

.toki--temp-expanded-wallet--spinner {
    border-top: 4px solid transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}