.notice {
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 0 0 18px;
  padding: 12px 15px;
}

.notice.success {
  background: var(--accent2);
  color: var(--accent);
}

.notice.error {
  background: #fff0ee;
  color: var(--danger);
}

.security-panel {
  max-width: 760px;
}

.password-form {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.password-form button {
  grid-column: 1 / -1;
  justify-self: start;
}

@media (max-width: 760px) {
  .password-form {
    grid-template-columns: 1fr;
  }

  .password-form button {
    width: 100%;
  }
}
