/* ==========================================
   UI Input
========================================== */

.ui-form-group {
    width: 100%;
}

.ui-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.ui-input-wrapper {
    position: relative;
}

.ui-input {
    width: 100%;
    height: 44px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 14px;
    color: #0f172a;
    background: #ffffff;
    transition: all 0.2s ease;
}

.ui-input::placeholder {
    color: #94a3b8;
}

.ui-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.has-icon .ui-input {
    padding-left: 46px;
}

.ui-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    color: #94a3b8;
}

.ui-helper {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #64748b;
}

.ui-error {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #dc2626;
}
