/* BACKGROUND GRADIENT */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.login-wrap {
    background: linear-gradient(135deg, #0f2463, #1565c0, #0d9488, #7c3aed);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    /* needed for canvas to sit inside */
    overflow: hidden;
}

#particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* body{
    background-image:url({{url('images/loginBG2.jpg')}});
    background-size: cover; or contain, or a specific size value
    background-position: center center;
    height: 100%;
} */

.form-control {
    border: 1px solid #c0bcbc;
}

#passwordRequirements,
#checkboxPassword {
    display: none;
}

/* #checkboxPassword {
        display: none;
    } */

/* TOOLTIP */
.tooltip-text {
    visibility: hidden;
    position: absolute;
    z-index: 1;
    width: 180px;
    color: rgb(0, 0, 0);
    font-size: 13px;
    background-color: #51aeff;
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
}

.hover-text:hover .tooltip-text {
    visibility: visible;
}

.hover-text-latarBelakang:hover .tooltip-text {
    visibility: visible;
}

#right {
    top: -8px;
    left: 120%;
}

.hover-text {
    color: #2993f0;
    position: relative;
    display: inline-block;
    /* margin: 40px; */
    text-align: left;
}

/* TOOLTIP */


/* PANDUAN MODAL POPUP */
#panduanModal .modal-content {
    border: none;
    border-radius: 14px;
    overflow: hidden;
}

#panduanModal .modal-header {
    background: linear-gradient(135deg, #0f2463, #1565c0);
    border-bottom: none;
    padding: 22px 24px;
}

#panduanModal .modal-title {
    color: #fff;
    font-weight: 600;
    letter-spacing: .2px;
}

#panduanModal .modal-title small {
    display: block;
    font-weight: 400;
    font-size: 15px;
    color: rgba(255, 255, 255, .75);
    margin-top: 2px;
}

#panduanModal .close {
    color: #fff;
    opacity: .8;
    text-shadow: none;
}

#panduanModal .modal-body {
    padding: 30px 28px 14px 28px;
    background: #fafbfd;
}

.panduan-timeline {
    position: relative;
    margin: 0;
    padding: 0;
}

.panduan-step {
    position: relative;
    display: flex;
    gap: 18px;
    padding-bottom: 28px;
}

.panduan-step:last-child {
    padding-bottom: 4px;
}

.panduan-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    width: 2px;
    height: calc(100% - 30px);
    background: repeating-linear-gradient(to bottom,
            #c7d2e8 0, #c7d2e8 5px, transparent 5px, transparent 10px);
}

.panduan-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
}

.panduan-step:nth-child(1) .panduan-icon {
    background: linear-gradient(135deg, #1565c0, #2196f3);
}

.panduan-step:nth-child(2) .panduan-icon {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.panduan-step:nth-child(3) .panduan-icon {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.panduan-step:nth-child(4) .panduan-icon {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.panduan-step.is-reject:nth-child(4) .panduan-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.panduan-text {
    flex: 1;
    padding-top: 4px;
}

.panduan-text .step-label {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #1565c0;
    margin-bottom: 3px;
}

.panduan-text h6 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #1c2536;
}

.panduan-text p {
    margin-bottom: 0;
    font-size: 15px;
    color: #5b6478;
    line-height: 1.5;
}

.panduan-branch {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.panduan-branch .branch-card {
    flex: 1;
    min-width: 180px;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.45;
}

.branch-card.approve {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.branch-card.reject {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.branch-card strong {
    display: block;
    margin-bottom: 2px;
}

#panduanModal .modal-footer {
    border-top: 1px solid #eef0f5;
    background: #fafbfd;
    padding: 14px 28px 22px 28px;
}

#panduanModal .btn-faham {
    background: linear-gradient(135deg, #0f2463, #1565c0);
    border: none;
    color: #fff;
    font-weight: 500;
    padding: 8px 22px;
    border-radius: 30px;
}

#panduanModal .btn-faham:hover {
    opacity: .92;
    color: #fff;
}