.alert {
  background: #fff;
  /* border: 1px solid #eee; */
  padding: 0.5rem;
  color: #000;
  border-radius: 0.625rem;
  font-size: 0.75rem;
  margin: 1rem 0;
  text-align: center;
  transition: all 0.5s;
  /* box-shadow: 0.05rem 0.05rem 0.1rem rgba(0, 0, 0, 0.05); */
}

.alert.success {
  background: var(--site-success);
  border: 1px solid var(--site-success);
  color: #fff;
}

.alert.error {
  background: var(--site-danger);
  color: #fff;
  border: 1px solid var(--site-danger-orange);
}

.alert-window {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.alert-container {
  padding: 1rem;
  background: #fff;
  border-radius: 1rem;
  min-width: 25rem;
}
