/* ========================================
   REGISTRATION WIZARD STYLES
   For CodeIgniter 4
   ======================================== */
/* Wizard Container */
.wizard-container {
    min-height: 100vh;
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.wizard-wrapper {
    width: 100%;
    max-width: 56rem;
}
/* ========================================
   PROGRESS STEPS
   ======================================== */
.wizard-progress {
    margin-bottom: 2rem;
}
.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.progress-step-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
}
.progress-step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.progress-step {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--muted);
    color: var(--muted-foreground);
    background-color: var(--background);
    transition: all 0.3s ease;
    position: relative;
}
.progress-step.active {
    border-color: var(--primary);
    color: var(--primary);
}
.progress-step.completed {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
}
.progress-step .step-icon {
    width: 1.25rem;
    height: 1.25rem;
}
.progress-step .icon-check {
    display: none;
}
.progress-step.completed .icon-database,
.progress-step.completed .icon-key,
.progress-step.completed .icon-card,
.progress-step.completed .icon-check-circle {
    display: none;
}
.progress-step.completed .icon-check {
    display: block;
}
.step-label {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    color: var(--muted-foreground);
    text-align: center;
    display: none;
}
.progress-step.active+.step-label {
    font-weight: 600;
    color: var(--foreground);
}
.progress-line {
    height: 2px;
    flex: 1;
    margin: 0 0.5rem;
    background-color: var(--muted);
    transition: background-color 0.3s ease;
}
.progress-line.completed {
    background-color: var(--primary);
}
@media (min-width: 768px) {
    .step-label {
        display: block;
    }
}
/* ========================================
   WIZARD CARD
   ======================================== */
.wizard-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.wizard-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.wizard-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}
.wizard-card-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}
.wizard-card-content {
    padding: 1.5rem;
}
/* ========================================
   WIZARD STEPS
   ======================================== */
.wizard-step {
    display: none;
}
.wizard-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ========================================
   FORM ELEMENTS
   ======================================== */
.form-group {
    margin-bottom: 1rem;
}
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}
.form-input {
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 2px);
    background-color: var(--background);
    color: var(--foreground);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(92, 179, 93, 0.1);
}
.form-input::-moz-placeholder {
    color: var(--muted-foreground);
}
.form-input::placeholder {
    color: var(--muted-foreground);
}
.form-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.form-hint {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}
/* ========================================
   CONNECTION OPTIONS (Step 2)
   ======================================== */
.connection-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.connection-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}
.connection-option:hover {
    background-color: rgba(245, 245, 245, 0.5);
}
.connection-option:has(.connection-radio:checked) {
    border-color: var(--primary);
    background-color: rgba(92, 179, 93, 0.05);
}
.connection-radio {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--primary);
    cursor: pointer;
}
.connection-content {
    flex: 1;
}
.connection-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.connection-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
/* ========================================
   INFO BOX & ALERTS (Step 3)
   ======================================== */
.info-box {
    background-color: rgba(245, 245, 245, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
}
.info-box p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}
.alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.alert.hidden {
    display: none;
}
.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #991b1b;
}
.alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #166534;
}
.alert-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.alert p {
    font-size: 0.875rem;
    margin: 0;
}
/* ========================================
   PLAN OPTIONS (Step 4)
   ======================================== */
.plan-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.plan-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}
.plan-option:hover {
    background-color: rgba(245, 245, 245, 0.5);
}
.plan-option:has(.plan-radio:checked) {
    border-color: var(--primary);
    background-color: rgba(92, 179, 93, 0.05);
}
.plan-featured {
    border-width: 2px;
    border-color: var(--primary);
}
.plan-badge {
    position: absolute;
    top: -0.75rem;
    right: 1rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.plan-radio {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}
.plan-content {
    flex: 1;
}
.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.plan-name {
    font-size: 1.125rem;
    font-weight: 600;
}
.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
}
.plan-period {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--muted-foreground);
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
.feature-check {
    color: var(--primary);
    flex-shrink: 0;
}
/* ========================================
   CONFIRMATION (Step 5)
   ======================================== */
.confirmation-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.confirmation-section {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
}
.confirmation-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.confirmation-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
    font-size: 0.875rem;
}
.confirmation-label {
    color: var(--muted-foreground);
}
.confirmation-value {
    font-weight: 500;
    text-transform: capitalize;
}
.payment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.security-note {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
}
.security-icon {
    color: #22c55e;
}
.terms-section {
    margin-bottom: 1.5rem;
}
.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}
.terms-checkbox input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}
.terms-checkbox span {
    font-size: 0.875rem;
    line-height: 1.5;
}
/* ========================================
   ADVISOR SECTION
   ======================================== */
.advisor-section {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
}
/* ========================================
   WIZARD NAVIGATION
   ======================================== */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    margin-top: 1.5rem;
}
.step-actions {
    padding-top: 1rem;
}
/* ========================================
   UTILITY CLASSES
   ======================================== */
.hidden {
    display: none !important;
}
.text-link {
    color: var(--primary);
    text-decoration: none;
}
.text-link:hover {
    text-decoration: underline;
}
.btn-full {
    width: 100%;
}
.icon-left {
    margin-right: 0.5rem;
}
.icon-right {
    margin-left: 0.5rem;
}
/* Button disabled state */
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/*# sourceMappingURL=register.css.map*/