.form-control.error {
    border-color: var(--tblr-form-invalid-border-color);
    padding-right: calc(1.4285714286em + 1.125rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d63939' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.3571428572em + .28125rem) center;
    background-size: calc(.7142857143em + .5625rem) calc(.7142857143em + .5625rem)
}

.stepwizard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.stepwizard-step {
    text-align: center;
    position: relative;
    flex: 1;
    z-index: 2;
}

.stepwizard-step a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.stepwizard-step p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.2;
    color: var(--tblr-secondary);
}

.tentera .stepwizard-step a .item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 0.75rem;
    border: 2px solid #cecece;
    color: rgba(var(--tblr-secondary-rgb), var(--tblr-text-opacity)) !important;
    transition: all 0.3s ease;
    position: relative;
}

.tentera .stepwizard-step a .item.active {
    background-color: #ffffff;
    border: 3px solid #206bc4;
    color: rgba(var(--tblr-primary-rgb), var(--tblr-text-opacity)) !important;
    transform: scale(1.1);
}

.tentera .stepwizard-step a .item.opacity-50 {
    background-color: #ffffff;
    z-index: 2;
}

.tentera .progress {
    height: 0.3rem;
    position: absolute;
    top: 30%;
    width: 77%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}

@media (max-width: 768px) {
    .stepwizard {
        padding: 0 0.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 1.5rem;
    }
    
    .stepwizard-step {
        min-width: 80px;
        margin: 0 0.25rem;
    }
    
    .stepwizard-step p {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }
    
    .tentera .stepwizard-step a .item {
        padding: 0.4rem;
        transform: scale(0.8);
    }
    
    .tentera .stepwizard-step a .item.active {
        transform: scale(0.9);
    }
    
    .tentera .progress {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .stepwizard-step {
        min-width: 70px;
    }
    
    .stepwizard-step p {
        font-size: 0.65rem;
    }
    
    .tentera .stepwizard-step a .item {
        padding: 0.35rem;
        transform: scale(0.7);
    }
    
    .tentera .stepwizard-step a .item.active {
        transform: scale(0.8);
    }
}

.tentera .stepwizard-step a .item,
.tentera .progress-bar {
    transition: all 0.3s ease-in-out;
}

.tentera .stepwizard-step a:hover .item:not(.active) {
    border-color: #206bc4;
    transform: scale(1.05);
}









