/* Responsive Styles for Register Page */

/* Tablets and below */
@media (max-width: 991px) {
    .register {
        padding-top: 30px;
    }
    
    .register-content {
        padding: 30px 25px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .progress-wrapper {
        padding: 25px 15px;
    }
    
    .step-circle {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .step-label {
        font-size: 11px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .register-page {
        padding: 20px 0;
    }
    
    .register {
        padding-top: 20px;
        padding-bottom: 40px;
    }
    
    .register-card {
        border-radius: 15px;
        margin: 0 10px;
    }
    
    .register-content {
        padding: 25px 20px;
    }
    
    .register-header h2 {
        font-size: 24px;
    }
    
    .register-header p {
        font-size: 13px;
    }
    
    /* Progress bar vertical on mobile */
    .progress-wrapper {
        padding: 20px 15px;
    }
    
    .progress-bar-custom {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .progress-line {
        flex: 0;
        width: 30px;
        height: 2px;
        margin: 0 5px;
        top: -25px;
    }
    
    .step-circle {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .step-label {
        font-size: 10px;
        max-width: 60px;
    }
    
    .step-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    /* Form adjustments */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        height: 44px;
        font-size: 14px;
    }
    
    .input-with-icon i {
        font-size: 14px;
        left: 12px;
    }
    
    .input-with-icon .form-control {
        padding-left: 40px;
    }
    
    /* Business type selector */
    .business-type-selector {
        flex-direction: column;
        gap: 15px;
    }
    
    .type-card {
        padding: 20px;
    }
    
    .type-card i {
        font-size: 30px;
    }
    
    /* Step actions */
    .step-actions {
        flex-direction: column-reverse;
        gap: 10px;
        padding-top: 20px;
    }
    
    .step-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    /* URL preview */
    .url-preview {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .url-preview small {
        word-break: break-all;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .register-header h2 {
        font-size: 20px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-label {
        font-size: 9px;
        margin-top: 5px;
    }
    
    .progress-line {
        width: 20px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-control {
        height: 42px;
        font-size: 13px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .type-card i {
        font-size: 26px;
        margin-bottom: 8px;
    }
    
    .type-card span {
        font-size: 13px;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .progress-wrapper {
        padding: 15px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-label {
        display: none;
    }
    
    .register-content {
        padding: 20px;
    }
}

/* Print styles */
@media print {
    .register-header,
    .step-actions,
    .progress-wrapper {
        display: none;
    }
    
    .wz-step {
        display: block !important;
        page-break-inside: avoid;
    }
}
