/*
========================================================
Form & Profile Custom Styles WLG
========================================================
Developer: Thomas Cabrit
Company: Kcalb Ltd
Website: https://kcalb.org
Project: InoPlace (https://inoplace.org)
GitHub: https://github.com/Thomas-Cabrit
Customisation Pro: Layout and customization of elements.
========================================================
*/


button.walogin-connect.button.button-large,
a.walogin-connect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  background: var(--gradient-red-hover);
  color: var(--color-white);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25),
              0 0 10px rgba(191, 70, 255, 0.2);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  margin-right: 10px;
  margin-bottom: 10px;
}

button.walogin-connect.button.button-large:last-child,
a.walogin-connect:last-child {
  margin-right: 0;
}

button.walogin-connect.button.button-large:hover,
a.walogin-connect:hover {
  transform: translateY(-3px);
}

/* === MATCHING ADDRESS BLOCK === */
.matching-address {
  background: var(--gradient-box-w);
  box-shadow: var(--inner-shadow-white);
  margin-bottom: 10px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  line-height: 1.4;
  word-break: break-word;
  white-space: normal;
  width: 100%;
  text-align: left;
  border-style: solid;
  border: 0 solid var(--color-primary);
}

/* === LAYOUT FLEX FOR MATCHING === */
.already-matching {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  text-align: center;
  margin-top: 15px;
}

@media (max-width: 480px) {
  .already-matching {
    flex-direction: column;
  }
}

