/**
 * Shopify theme for Card to Website Payment Gateway
 */
 .card-to-website-form.shopify-theme {
    max-width: 100%;
    background-color: transparent;
    font-family: -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
}

.shopify-theme .card-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 24px;
}

.shopify-theme .shopify-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.shopify-theme .card-title {
    display: flex;
    margin-bottom: 15px;
}

.shopify-theme .shopify-form-group {
    position: relative;
    margin-bottom: 12px;
}

.shopify-theme .shopify-form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #c4cdd5;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #212b36;
    background-color: #ffffff;
    box-shadow: 0 0 0 1px transparent, 0 0 0 0 transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shopify-theme .shopify-form-group input:focus {
    border-color: #5c6ac4;
    box-shadow: 0 0 0 1px #5c6ac4;
    outline: none;
}

.shopify-theme .shopify-form-row {
    display: flex;
    gap: 12px;
}

.shopify-theme .shopify-form-group.half {
    flex: 1;
    position: relative;
}

.shopify-theme .shopify-lock-icon,
.shopify-theme .shopify-help-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #637381;
    cursor: pointer;
    z-index: 2;
}

/* Placeholder styling */
.shopify-theme input::placeholder {
    color: #6d7175;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .shopify-theme .shopify-form-row {
        flex-direction: column;
        gap: 12px;
    }
}