/* Enhanced Auth Buttons Global Styles */
.auth-buttons-enhanced {
  display: flex;
  gap: 12px;
  align-items: center;
}

.auth-btn {
  position: relative;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid #BDCF00;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(189, 207, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.auth-btn-register {
  background: linear-gradient(135deg, #BDCF00, #a8b800);
  color: white;
  border-color: #BDCF00;
}

.auth-btn-login {
  background: transparent;
  color: #BDCF00;
  border-color: #BDCF00;
}

.auth-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(189, 207, 0, 0.4);
  text-decoration: none;
}

.auth-btn-register:hover {
  background: linear-gradient(135deg, #a8b800, #96a600);
  box-shadow: 0 8px 25px rgba(189, 207, 0, 0.5);
  color: white;
}

.auth-btn-login:hover {
  background: #BDCF00;
  color: white;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
  z-index: 1;
}

.auth-btn:hover .btn-shine {
  left: 100%;
}

/* Header specific positioning */
.vs-header__action .auth-buttons-enhanced {
  margin: 0;
}

.vs-header__right .auth-buttons-enhanced {
  margin: 0;
}

/* Mobile menu positioning */
.vs-mobile-menu .auth-buttons-enhanced {
  margin-top: 20px;
  padding: 0 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .auth-buttons-enhanced {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  
  .auth-btn {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .auth-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}
