/* ================= AUTH PAGES (LOGIN & SIGNUP) ================= */
.auth-body {
  background: url("login signup.jpg") no-repeat center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.link{
    text-decoration: none;
    color: #ffffff;
}
.link a{
    text-decoration: none;
    color: #00c3ff;
    padding: 10px;
}

.transparent-form {
  background: rgba(255, 255, 255, 0.2);
  padding: 30px;
  border-radius: 12px;
  width: 350px;
  backdrop-filter: blur(5px);
  padding-left: 20px;
  padding-right: 40px;
}

.transparent-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

.transparent-form input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: none;
}

.transparent-form button {
  width: 370px;
  padding: 10px;
  background: yellow;
  border: none;
  border-radius: 5px;
  color: rgb(0, 0, 0);
  cursor: pointer;
  transition: 0.3s background 0.3s;
  margin-bottom: 7px;
}

.transparent-form button:hover {
  background: yellow;
  color: rgb(0, 0, 0);
}

/* ================= FOOTER ================= */