:root {
  --bg: #222831;
  --header: #0f172a;
  --primary: #393e46;
  --secondary: #f8fafc;
  --accent: #7ebdc3;
  --buttons: #005678;
  --delete-buttons: #811616;
  --credits: #ee70ce;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

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

.form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(90%, 1200px);
  min-height: 75vh;
  margin: 30px auto;
  padding: 20px;
  background-image: url("../media/background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.login-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: min(90%, 500px);
  padding: 30px;
  background: rgba(126, 189, 195, 0.85);
  color: black;
  border: none;
  border-radius: var(--radius);
}
.form-element {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
}

.btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn {
  width: 45%;
}

a {
  color: var(--credits);
}
a:hover {
  opacity: 0.8;
}
