/* Login buttons section */
.login-buttons {
  margin: 20px 5px;
}

.login-buttons a {
//  color: unset !important;
}

.login-buttons a:hover {
//  color: unset !important;
}

.login-buttons .btn-ticket-purchase {
  margin-bottom: 15px;
  display: block;
  width: 100%;
  height: 60px;
  background: #fc6527;
  border: 1px solid #000;
  border-radius: 10px;
  color: #fff !important;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 56px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.login-buttons .btn-ticket-purchase:hover {
  background: #e55a1f;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.login-buttons .btn-login-purchase {
  margin-bottom: 15px;
  display: block;
  width: 100%;
  height: 60px;
  background: #fff;
  border: 2px solid #fc6527;
  border-radius: 10px;
  color: #fc6527 !important;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.login-buttons .btn-login-purchase:hover {
  background: #fc6527;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.login-buttons .btn-member-purchase {
  display: block;
  width: 100%;
  height: 60px;
  background: #fc6527;
  border: 1px solid #000;
  border-radius: 10px;
  color: #fff !important;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.login-buttons .btn-member-purchase:hover {
  background: #e55a1f;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

