.ibra-form {
    margin-bottom: 25px;
}

.ibra-form input {
    padding: 8px;
    width: 260px;
}

.ibra-form button {
    padding: 8px 15px;
    cursor: pointer;
}

.stepper {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    font-size: 13px;
}

.step .icon {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.step.completed {
    color: #2ecc71;
}

.step.active {
    color: #3498db;
    font-weight: bold;
}

.step.pending {
    color: #aaa;
}

.step::after {
    content: '';
    position: absolute;
    top: 10px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: #ccc;
    z-index: -1;
}

.step.completed::after {
    background: #2ecc71;
}

.step:last-child::after {
    display: none;
}
