/**
 * Enhanced Form Styles - Reusable Component
 *
 * Usage:
 * Wrap your form card with: <div class="card enhanced-form-wrapper">
 * All form elements will automatically get styled
 */

/* Enhanced Form Wrapper - Apply to card */
.enhanced-form-wrapper {
    border: none;
    border-radius: 12px;
    background: #ffffff;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); */
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}


/* Subtle Accent Bar on Top */
.enhanced-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ff9008;
    border-radius: 12px 12px 0 0;
}

.enhanced-form-wrapper .card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem 1.5rem;
    border-radius: 12px 12px 0 0;
}

.enhanced-form-wrapper .card-header h5 {
    margin: 0;
    font-weight: 600;
    color: #495057;
    font-size: 1.1rem;
}

.enhanced-form-wrapper .card-body {
    padding: 1.5rem;
}

/* Enhanced Labels */
.enhanced-form-wrapper label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: block;
}

.enhanced-form-wrapper label span.text-danger {
    color: #ff9008 !important;
    font-weight: 700;
    margin-left: 2px;
}

/* Enhanced Input Fields */
.enhanced-form-wrapper .form-control {
    border: 1.5px solid #e9ecef;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    color: #495057;
    background-color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.enhanced-form-wrapper .form-control::placeholder {
    color: #adb5bd;
    font-style: italic;
    opacity: 0.8;
}

.enhanced-form-wrapper .form-control:hover {
    border-color: #ced4da;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.enhanced-form-wrapper .form-control:focus {
    border-color: #ff9008;
    box-shadow: 0 0 0 3px rgba(255, 144, 8, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    outline: none;
    background-color: #ffffff;
}

.enhanced-form-wrapper .form-control:disabled,
.enhanced-form-wrapper .form-control[readonly] {
    background-color: #f8f9fa;
    opacity: 0.7;
    cursor: not-allowed;
}

/* Enhanced Input Groups */
.enhanced-form-wrapper .input-group {
    position: relative;
}

.enhanced-form-wrapper .input-group-prepend .input-group-text,
.enhanced-form-wrapper .input-group-append .input-group-text {
    background-color: #f8f9fa;
    border: 1.5px solid #e9ecef;
    border-radius: 8px 0 0 8px;
    color: #6c757d;
    font-weight: 500;
    padding: 0.65rem 1rem;
    transition: all 0.3s ease;
}

.enhanced-form-wrapper .input-group-append .input-group-text {
    border-radius: 0 8px 8px 0;
}

.enhanced-form-wrapper .input-group .form-control {
    border-radius: 8px 0 0 8px;
}

.enhanced-form-wrapper .input-group .input-group-prepend+.form-control {
    border-left: none;
    border-radius: 0 8px 8px 0;
}


.enhanced-form-wrapper .input-group:focus-within .input-group-prepend .input-group-text,
.enhanced-form-wrapper .input-group:focus-within .input-group-append .input-group-text {
    border-color: #ff9008;
    background-color: #fff3eb;
    color: #ff9008;
}

.enhanced-form-wrapper .input-group:focus-within .form-control {
    border-left-color: #ff9008;
}

/* Enhanced Buttons in Input Groups */
.enhanced-form-wrapper .input-group-append .btn,
.enhanced-form-wrapper .input-group-prepend .btn {
    border-radius: 0 8px 8px 0;
    border: 1.5px solid #e9ecef;
    border-left: none;
    padding: 0.65rem 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #495057;
}

.enhanced-form-wrapper .input-group-prepend .btn {
    border-radius: 8px 0 0 8px;
    border-left: 1.5px solid #e9ecef;
    border-right: none;
}

.enhanced-form-wrapper .input-group-append .btn:hover,
.enhanced-form-wrapper .input-group-prepend .btn:hover {
    background-color: #fff3eb;
    border-color: #ff9008;
    color: #ff9008;
    box-shadow: 0 2px 6px rgba(255, 144, 8, 0.2);
}

.enhanced-form-wrapper .input-group-append .btn:focus,
.enhanced-form-wrapper .input-group-prepend .btn:focus {
    outline: none;
    border-color: #ff9008;
    box-shadow: 0 0 0 3px rgba(255, 144, 8, 0.15);
}

/* Enhanced Submit Button - Works both inside and outside form */
.enhanced-form-wrapper .btn-primary,
.enhanced-form-wrapper input[type="submit"].btn-primary,
.enhanced-form-wrapper button[type="submit"].btn-primary {
    background: #ff9008;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(255, 144, 8, 0.25);
    transition: all 0.3s ease;
    color: #ffffff;
}

.enhanced-form-wrapper .btn-primary:hover,
.enhanced-form-wrapper input[type="submit"].btn-primary:hover,
.enhanced-form-wrapper button[type="submit"].btn-primary:hover {
    background: #e88207;
    box-shadow: 0 4px 12px rgba(255, 144, 8, 0.35);
    transform: translateY(-1px);
    color: #ffffff;
}

.enhanced-form-wrapper .btn-primary:focus,
.enhanced-form-wrapper input[type="submit"].btn-primary:focus,
.enhanced-form-wrapper button[type="submit"].btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 144, 8, 0.25), 0 4px 12px rgba(255, 144, 8, 0.35);
}

.enhanced-form-wrapper .btn-primary:active,
.enhanced-form-wrapper input[type="submit"].btn-primary:active,
.enhanced-form-wrapper button[type="submit"].btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 144, 8, 0.25);
}

/* Enhanced Form Groups */
.enhanced-form-wrapper .form-group {
    margin-bottom: 1.25rem;
}

.enhanced-form-wrapper .form-group:last-child {
    margin-bottom: 0;
}

/* Validation States */
.enhanced-form-wrapper .form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23dc3545' d='M6 0C2.69 0 0 2.69 0 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm.5 8.5h-1v-1h1v1zm0-2.5h-1V3h1v3z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 16px;
    padding-right: 2.5rem;
}

.enhanced-form-wrapper .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.enhanced-form-wrapper .invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #dc3545;
    font-weight: 500;
}

.enhanced-form-wrapper .form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2328a745' d='M6 0C2.69 0 0 2.69 0 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm3.5 3.5L5.5 8 2.5 5l1-1 2 2 4-4 1 1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 16px;
    padding-right: 2.5rem;
}

.enhanced-form-wrapper .form-control.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.enhanced-form-wrapper .valid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #28a745;
    font-weight: 500;
}

/* Enhanced Select Dropdowns */
.enhanced-form-wrapper select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23495057' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 16px;
    padding-right: 2.5rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.enhanced-form-wrapper select.form-control:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff9008' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

/* Enhanced Textareas */
.enhanced-form-wrapper textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Enhanced Checkboxes and Radios - Bootstrap Compatible */
.enhanced-form-wrapper .form-check {
    padding-left: 0;
    margin-bottom: 0.5rem;
}

.enhanced-form-wrapper .form-check-inline {
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    margin-right: 1.5rem;
}

.enhanced-form-wrapper .form-check-label {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 500;
    color: #495057;
    user-select: none;
}

.enhanced-form-wrapper .form-check-input {
    position: absolute !important;
    margin-top: 0;
    margin-left: -1.75rem;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    cursor: pointer;
    z-index: -1;
}

/* Hide default Bootstrap radio button styles */
.card.enhanced-form-wrapper .form-check .form-check-label input[type="radio"]+.input-helper:before,
.card.enhanced-form-wrapper .form-check .form-check-label input[type="radio"]+.input-helper:after {
    display: none !important;
}

/* Radio button custom styling - recreate from scratch */
.card.enhanced-form-wrapper .form-check .form-check-label input[type="radio"]+.input-helper:before {
    content: '' !important;
    display: block !important;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #ced4da !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    background: #ffffff !important;
    background-image: none !important;
    transition: all 0.2s ease;
}

.card.enhanced-form-wrapper .form-check .form-check-label input[type="radio"]+.input-helper:after {
    content: '' !important;
    display: block !important;
    position: absolute;
    left: 5px !important;
    top: 50% !important;
    transform: translateY(-50%) scale(0) !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: #ff9008 !important;
    background: #ff9008 !important;
    background-image: none !important;
    transition: all 0.2s ease;
    opacity: 0;
}

/* Checkbox custom styling */
.card.enhanced-form-wrapper .form-check .form-check-label input[type="checkbox"]+.input-helper:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #ced4da;
    border-radius: 4px;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.card.enhanced-form-wrapper .form-check .form-check-label input[type="checkbox"]+.input-helper:after {
    content: '\2713';
    position: absolute;
    left: 0;
    width: 18px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%) scale(0);
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    transition: all 0.2s ease;
}

/* Checked state - Radio */
.card.enhanced-form-wrapper .form-check .form-check-label input[type="radio"]:checked~.input-helper:before {
    border-color: #ff9008 !important;
    background-color: #ffffff !important;
    background: #ffffff !important;
    background-image: none !important;
}

.card.enhanced-form-wrapper .form-check .form-check-label input[type="radio"]:checked~.input-helper:after {
    transform: translateY(-50%) scale(1) !important;
    opacity: 1 !important;
}

/* Checked state - Checkbox */
.card.enhanced-form-wrapper .form-check .form-check-label input[type="checkbox"]:checked+.input-helper:before {
    border-color: #ff9008;
    background-color: #ff9008;
}

.card.enhanced-form-wrapper .form-check .form-check-label input[type="checkbox"]:checked+.input-helper:after {
    transform: translateY(-50%) scale(1);
}

/* Hover state */
.enhanced-form-wrapper .form-check-label:hover .input-helper:before {
    border-color: #ff9008;
    box-shadow: 0 0 0 3px rgba(255, 144, 8, 0.1);
}

/* Focus state */
.enhanced-form-wrapper .form-check .form-check-label input[type="radio"]:focus+.input-helper:before,
.enhanced-form-wrapper .form-check .form-check-label input[type="checkbox"]:focus+.input-helper:before {
    border-color: #ff9008;
    box-shadow: 0 0 0 3px rgba(255, 144, 8, 0.15);
}

/* Disabled state */
.enhanced-form-wrapper .form-check .form-check-label input[type="radio"]:disabled+.input-helper:before,
.enhanced-form-wrapper .form-check .form-check-label input[type="checkbox"]:disabled+.input-helper:before {
    background-color: #f8f9fa;
    border-color: #e9ecef;
    opacity: 0.6;
    cursor: not-allowed;
}

.enhanced-form-wrapper .form-check .form-check-label input[type="radio"]:disabled+.input-helper:after,
.enhanced-form-wrapper .form-check .form-check-label input[type="checkbox"]:disabled+.input-helper:after {
    background-color: #adb5bd;
}

.enhanced-form-wrapper .form-check-input:disabled~.form-check-label {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Section Styling */
.enhanced-form-wrapper .row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.enhanced-form-wrapper .row>[class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Loading State for Submit Button */
.enhanced-form-wrapper .btn-primary.loading,
.enhanced-form-wrapper input[type="submit"].btn-primary.loading,
.enhanced-form-wrapper button[type="submit"].btn-primary.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.enhanced-form-wrapper .btn-primary.loading::after,
.enhanced-form-wrapper input[type="submit"].btn-primary.loading::after,
.enhanced-form-wrapper button[type="submit"].btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 576px) {
    .enhanced-form-wrapper .card-body {
        padding: 1rem;
    }

    .enhanced-form-wrapper .form-control {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .enhanced-form-wrapper .btn-primary,
    .enhanced-form-wrapper input[type="submit"].btn-primary,
    .enhanced-form-wrapper button[type="submit"].btn-primary {
        width: 100%;
        padding: 0.75rem 2rem;
    }
}

/* Custom radio button styling - completely independent */
.custom-radio-group {
    display: flex !important;
    gap: 1.5rem !important;
}

.custom-radio-group .custom-radio-item {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
}

.custom-radio-group .custom-radio-item input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    cursor: pointer !important;
    z-index: 1 !important;
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    left: 0 !important;
    top: 0 !important;
}

.custom-radio-group .custom-radio-item .radio-label {
    padding-left: 28px !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #495057 !important;
    user-select: none !important;
    position: relative !important;
    display: inline-block !important;
    line-height: 1.5 !important;
}

.custom-radio-group .custom-radio-item .radio-label:before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #ced4da !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    background-image: none !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
}

.custom-radio-group .custom-radio-item .radio-label:after {
    content: '' !important;
    position: absolute !important;
    left: 5px !important;
    top: 50% !important;
    transform: translateY(-50%) scale(0) !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #ff9008 !important;
    background-image: none !important;
    transition: all 0.2s ease !important;
    opacity: 0 !important;
}

.custom-radio-group .custom-radio-item input[type="radio"]:checked+.radio-label:before {
    border-color: #ff9008 !important;
    background: #ffffff !important;
}

.custom-radio-group .custom-radio-item input[type="radio"]:checked+.radio-label:after {
    transform: translateY(-50%) scale(1) !important;
    opacity: 1 !important;
}

.custom-radio-group .custom-radio-item:hover .radio-label:before {
    border-color: #ff9008 !important;
    box-shadow: 0 0 0 3px rgba(255, 144, 8, 0.1) !important;
}

/* Custom checkbox styling - consistent with radio buttons */
.custom-checkbox-item {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
}

.custom-checkbox-item input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    cursor: pointer !important;
    z-index: 1 !important;
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    left: 0 !important;
    top: 0 !important;
}

.custom-checkbox-item .checkbox-label {
    padding-left: 28px !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #495057 !important;
    user-select: none !important;
    position: relative !important;
    display: inline-block !important;
    line-height: 1.5 !important;
}

.custom-checkbox-item .checkbox-label:before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #ced4da !important;
    border-radius: 4px !important;
    background: #ffffff !important;
    transition: all 0.2s ease !important;
}

.custom-checkbox-item input[type="checkbox"]:checked+.checkbox-label:before {
    border-color: #ff9008 !important;
    background: #ff9008 !important;
}

.custom-checkbox-item input[type="checkbox"]:checked+.checkbox-label:after {
    content: '\f00c' !important;
    font-family: 'FontAwesome' !important;
    font-weight: normal !important;
    position: absolute !important;
    left: 3px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 11px !important;
    color: #ffffff !important;
}

.custom-checkbox-item:hover .checkbox-label:before {
    border-color: #ff9008 !important;
    box-shadow: 0 0 0 3px rgba(255, 144, 8, 0.1) !important;
}

/* Multi-Step Form Layout (LTR) */
.step-form-container {
    display: flex;
    gap: 2rem;
    min-height: 600px;
}

.step-progress-sidebar {
    width: 250px;
    flex-shrink: 0;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.step-progress-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-progress-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 13px;
    top: 42px;
    width: 2px;
    height: calc(100% - 20px);
    background: #dee2e6;
    transition: all 0.3s ease;
}

.step-progress-item.active:not(:last-child)::after,
.step-progress-item.completed:not(:last-child)::after {
    background: #ff9008;
}

.step-number {
    min-width: 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.step-progress-item.active .step-number {
    background: #ff9008;
    color: white;
    box-shadow: 0 0 0 4px rgba(255, 144, 8, 0.2);
}

.step-progress-item.completed .step-number {
    background: #ff9008;
    color: white;
}

.step-progress-item.completed .step-number::before {
    content: '\2713';
    font-size: 0.875rem;
}

.step-label {
    flex: 1;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.4;
    word-break: break-word;
}

.step-progress-item.active .step-label {
    color: #ff9008;
    font-weight: 600;
}

.step-progress-item.completed .step-label {
    color: #495057;
}

.step-content-area {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    margin-bottom: 2rem;
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.btn-step {
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-step-next {
    background: #ff9008;
    border-color: #ff9008;
    color: white;
}

.btn-step-prev {
    background: white;
    border-color: #dee2e6;
    color: #495057;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

@media (max-width: 992px) {
    .step-form-container {
        flex-direction: column;
    }
    .step-progress-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        max-height: none;
    }
}

.hr-line {
    border: none;
    height: 1.5px;
    background: #ff9008;
    box-shadow: 0 0 8px rgba(255, 144, 8, 0.4);
    margin: 1.5rem 0;
    border-radius: 1px;
}