﻿/* signup-wizard.css - layout-specific styles for signup wizard */

/* Remove border around fieldset (address block) */
.address-block {
    border: none !important;
    padding: 0 !important;
    margin: 0;
}

    .address-block legend {
        display: block;
        font-weight: 600;
        margin-bottom: .5rem;
    }

/* Hero and brand */
.hero-no-image .brand-logo-sm {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: linear-gradient(135deg,var(--primary),var(--primary-alt));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

/* Stepper visuals */
.btn-step {
    background: transparent;
    border: 1px solid transparent;
}

    .btn-step:hover {
        background: rgba(0,0,0,0.03);
    }

.step-num {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    font-weight: 700;
}

.btn-step.active .step-num, .btn-step:focus .step-num {
    background: linear-gradient(135deg,var(--primary),var(--primary-alt));
    color: white;
    box-shadow: 0 6px 18px rgba(255,65,108,0.14);
}

.btn-step.completed .step-num {
    background: linear-gradient(135deg,#06b6d4,#34d399);
    color: white;
}

/* Sticky bottom actions */
.sticky-bottom-actions {
    position: sticky;
    bottom: 0;
    z-index: 10;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Upload dropzone */
.upload-dropzone {
    cursor: pointer;
    transition: all .12s;
}

    .upload-dropzone:focus, .upload-dropzone:hover {
        box-shadow: 0 6px 18px rgba(0,0,0,0.05);
        border-color: rgba(0,0,0,0.08);
        outline: none;
    }

/* Password strength bar classes */
.bg-weak {
    background-color: #dc3545 !important;
}
/* danger */
.bg-fair {
    background-color: #fd7e14 !important;
}
/* orange */
.bg-good {
    background-color: #0dcaf0 !important;
}
/* cyan */
.bg-strong {
    background-color: #198754 !important;
}
/* green */

/* checklist colors */
.ok {
    color: #198754;
}

.bad {
    color: #6c757d;
}

/* small responsive tweaks */
@media (max-width: 767.98px) {
    aside.col-lg-4 {
        order: -1;
    }

    nav[aria-label="Signup steps"] {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: .5rem;
    }

        nav[aria-label="Signup steps"] .btn-step {
            display: inline-flex;
            min-width: 160px;
        }
}