.register-form h2 {
  font-size: 22px;
  color: var(--ast-global-colors-1) !important;
  margin-top: 50px;
}

.register-form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.register-form-field {
  flex: 1 1 18rem;
  min-width: 0;
}

/*************/
/* CAMPS ACF */
/*************/

/* Grasilha de 6 colomnas */
.acf-user-register-fields {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 1rem;
  column-gap: 10px;
}

/* Mobile pleine largeur */
.acf-user-register-fields .acf-field {
  grid-column: 1 / -1;
  min-width: 0;
}

/* Desktop */
@media (min-width: 768px) {
  .acf-user-register-fields .acf-field {
    grid-column: 1 / span 6;
    justify-self: stretch;
  }

  .acf-user-register-fields .acf-field.grid-third {
    grid-column: span 2;
  }

  .acf-user-register-fields .acf-field.grid-half {
    grid-column: span 3;
  }
}

/* Apichonir boton per seleccionar imatge */
.register-form .acf-button {
  padding: 5px 10px;
  font-size: 15px;
}

.register-form-submit {
  margin-top: 30px;
  text-align: center;
}
/*******************/
/* CSS notícias WP */
/*******************/
/* Recuperat del formulari natiu */

.login .message,
.login .notice,
.login .success {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 4px solid #72aee6;
  padding: 12px;
  margin-left: 0;
  margin-bottom: 20px;
  background-color: #fff;
  /*box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);*/
  word-wrap: break-word;
  font-weight: bold;
}
.login .success {
  border-left-color: #00a32a;
}
.login .notice-error {
  border-left-color: #d63638;
}
.login .login-error-list {
  list-style: none;
}
.login .login-error-list li + li {
  margin-top: 4px;
}
