* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--overlay-bg);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(20px) saturate(180%);
  background: var(--overlay-wrapper-bg);
  box-shadow: var(--box-shadow);
  padding: 50px 25px;
  border-radius: 35px;
  gap: 50px;
  width: 80%;
  max-width: 400px;
  margin: 1rem;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.logo {
  background-color: black;
  width: 100px;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: 500px;
}

.logo-bottom {
  width: 80%;
  filter: var(--logo-filter);
}

form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.error {
  width: 100%;
  color: #000000;
  text-align: center;
  padding: 7.5px;
  background: #ec5151;
  border-radius: 100px;
  font-size: 16px;
}
