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

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

#myVideo {
  position: fixed;
  z-index: -1;
  filter: brightness(40%);
  width: 100%;
}

h3 {
  text-align: center;
  font-size: 25px;
  color: white;
  margin-top: -20px;
  margin-bottom: 20px;
}

input {
  width: 300px;
  height: 40px;
  border-radius: 7px;
  border: none;
  padding: 10px;
  background-color: #ffffff;
  color: #333;
}

button {
  width: 300px;
  height: 40px;
  border-radius: 7px;
  border: none;
  background-color: #f51f42;
  color: white;
  font-size: 17px;
  cursor: pointer;
}

button:hover {
  background-color: #a81127;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 50px;
  border-radius: 15px;
  backdrop-filter: blur(3px);
  background-color: rgba(73, 67, 67, 0.5);
}

.container p {
  color: white;
}

.container a {
  color: #f51f42;
  text-decoration: none;
}

#loginForm,
#registerForm {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;

  transition: all 0.3s ease;
}

@media (max-width: 600px) {
  input,
  button {
    width: 250px;
  }
  .container {
    padding: 30px;
  }
}
@media (max-width: 400px) {
  input,
  button {
    width: 200px;
  }
  .container {
    padding: 20px;
  }
}
#myVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
