.buttonWrap {
    padding-bottom: 0 !important;
    line-height: inherit !important;
    height: inherit !important;
    border-radius: inherit !important;
}

.button-blue, .button-green, .button-yellow {
    position: relative;
    background: transparent !important;
    color: #fff !important;
    border: none !important;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    border-radius: 40px !important;
    font-size: 16px !important;
    z-index: 1;
    overflow: hidden;
    height: 48px;
    line-height: 48px; /* ini yang bikin teks vertikal center */
    padding: 8px 24px !important; /* ruang kanan untuk icon */
    text-align: center;
    box-sizing: border-box;
}


.button-blue::before, .button-green::before, .button-yellow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 40px;
    padding: 4px; /* 💥 Perbesar padding agar border makin tebal */
    background: linear-gradient(270deg, #ff0000, #ff9900, #ff0000);
    background-size: 400% 400%;
    animation: gradientBorder 3s ease infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.button-blue::after, .button-green::after, .button-yellow::after {
    content: "▶";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: white;
    background-color: #cc0000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 0 6px rgba(255, 0, 0, 0.5);
}


.input-button-wrapper {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 10px;
}

#loginBtnHeader {
    background: transparent !important;
    color: #fff !important;
    font-weight: bold;
    font-size: 16px !important;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    border: none !important;
    border-radius: 40px !important;
    position: relative;
    z-index: 2;
    width: 100% !important;
    display: inline-block;
    height: 48px; /* Sama seperti button lain */
    line-height: 48px; /* Ini yang bikin teks center vertikal */
    text-align: center;
    box-sizing: border-box;
    padding: 8px 24px !important;
    margin: 0 auto;
}


.glow-border {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 40px;
    z-index: 1;
    padding: 4px;
    background: linear-gradient(270deg, #ff0000, #ff9900, #ff0000);
    background-size: 400% 400%;
    animation: gradientBorder 3s ease infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.buttons {
    box-shadow: none !important;
}

.login-icon-overlay {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: white;
    background-color: #cc0000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
    z-index: 3;
    box-shadow: 0 0 6px rgba(255, 0, 0, 0.5);
    pointer-events: none;
    animation: slideLeftRight 1.8s infinite ease-in-out;
}


@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseIcon {
    0%   { transform: translateY(-50%) scale(1); }
    50%  { transform: translateY(-50%) scale(1.2); }
    100% { transform: translateY(-50%) scale(1); }
}

@keyframes flickerGlow {
    0%, 100% { box-shadow: 0 0 6px rgba(255, 0, 0, 0.5); }
    25% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.7); }
    50% { box-shadow: 0 0 16px rgba(255, 255, 255, 1); }
    75% { box-shadow: 0 0 10px rgba(255, 0, 0, 0.6); }
}

@keyframes slideLeftRight {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-5px); }
}
