/* ==========================================
   MICROSPLIT - CREATE SESSION MOBILE OPTIMIZATION
   ========================================== */

/* Typography & Base */
body {
    background-color: #f4f6f8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

/* Form Card Container */
.create-card {
    border-radius: 24px !important;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

/* Header Badge & Title */
.create-title {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.create-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

/* Custom Form Fields Style */
.form-section-label {
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
}

.form-control-custom,
.form-select-custom {
    border-radius: 12px !important;
    border: 1px solid #cbd5e1 !important;
    background-color: #f8fafc !important;
    font-size: 0.9rem;
    padding: 10px 12px;
    transition: all 0.2s ease;
}

.form-control-custom:focus,
.form-select-custom:focus {
    background-color: #ffffff !important;
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15) !important;
}

/* Input Group Enhancements */
.input-group-text-custom {
    border-radius: 12px 0 0 12px !important;
    border: 1px solid #cbd5e1 !important;
    border-end-style: none !important;
    background-color: #f1f5f9 !important;
    color: #64748b;
    font-weight: 600;
}

.input-group-custom .form-control-custom {
    border-radius: 0 12px 12px 0 !important;
}

/* Section Divider Box for Bank Transfer */
.bank-section-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
}

/* Primary Action Button */
.btn-create-submit {
    min-height: 52px;
    border-radius: 16px !important;
    font-size: 1rem;
    letter-spacing: 0.2px;
    transition: transform 0.1s ease, box-shadow 0.15s ease;
}

.btn-create-submit:active {
    transform: scale(0.98);
}

/* Responsive Fixes (<380px) */
@media (max-width: 380px) {
    .create-card {
        padding: 1rem !important;
    }

    .btn-create-submit {
        font-size: 0.95rem;
    }
}