* {
  background-image: none !important;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh !important;
  width: 100% !important;
  background: linear-gradient(135deg, #001f4d 0%, #004080 40%, #0066cc 100%) !important;
  background-attachment: fixed !important;
  background-size: cover !important;
}

    .hide-me {
      display: none;
    }

.btn-icon::before,
.btn-icon::after {
  content: none !important;
  display: none !important;
}

.btn-icon i,
.btn-icon img {
  display: none !important;
}

@keyframes borderShine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.button-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;               
    gap: 11px;
    padding: 4px 0;
    background-color: transparent;    
}

.glowing-button {
    flex: 1 1 48%;         
    min-width: 140px;      
    color: #fff; 
    border: 2px solid #0008f7;
    border-radius: 5px;
    padding: 8px 0;
    text-align: center;
    font-family: 'Poppins-Regular', sans-serif;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    text-decoration: none; 
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;   
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.glowing-button::before {
    content: "";
    position: absolute;
    top: -1px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(255deg, transparent, #0d00ff 40%, #2d4dff 60%, transparent);
    filter: drop-shadow(0 0 12px #0d00ff);
    background-size: 300% 300%;
    animation: borderShine 2s linear infinite;
    z-index: 0;
    border-radius: 5px;
    text-decoration: none !important;
}

.glowing-button span {
    position: relative;
    z-index: 1;
    color: #fff; 
    text-decoration: none !important;
}

.glowing-button:hover {
    transform: scale(1.05);
}

.alternatif-btn {
    background: transparent;  
    color: #fff;
    border: 2px solid #00f7ff;  
}

@media screen and (max-width: 480px) {
    .glowing-button {
        flex: 1 1 100%;  
    }
}
