.tbr_header {
    padding: 40px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.tbr_header img {
    height: 84px;
    margin-bottom: 20px;
}

main {
    background-color: #F6F6F7;
    flex: 1;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
}

/* Form Area */
main form {
    min-width: 400px;
}

form input.form-control,
.select2-selection.form-select {
    background-color: white !important;
    min-height: 45px;
}

/* responsive for media screnn 400px kebawah */
@media (max-width: 400px) {
    main form {
        min-width: 100%;
    }
}

/* Progress Deployment */
main {
    position: relative;
}

.progress-bar {
    position: absolute;
    top: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
}

.progress-bar .progress-value {
    transition: width 0.5s linear;
    height: 4px;
    background-color: var(--tbr-success);
    width: 0%;
}

.tbr_error--container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #F1416C1A;
    background-color: #F1416C0D;
    color: #F1416C;
    padding: 16px 25px;
    margin-top: 4px;
    border-radius: 8px;
    text-align: center;
}

.tbr_btn--success-grad {
    background: linear-gradient(104.92deg, #118C7E -19.16%, #24D366 100%);
    color: white !important;
    max-height: 34px;
    margin-top: 10px;
    font-weight: 600;
}