/* Reset default margin and padding */
body, h1, h2, h3, h4, h5, h6, p, ul, li {
  margin: 0;
  padding: 0;
}

/* Navigation styles */


/* Logo style */
.logo {
  font-size: 24px;
}

/* Land section styles */
.land {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;

  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-10%, -20%);
  object-fit: cover; 
}

.card {
  position: absolute;
  top: 50%;
  left: 50%;
  background:none;
max-width: 50%;
  
  /* background-color: rgba(255, 255, 255, 0.1); */
  background-color: rgba(0, 255, 255, 0.637);

  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.input-div {
  margin-bottom: 20px;
}

.input {
  padding: 10px;
  width: 100%;
  color: rgb(0, 0, 0);
  box-sizing: border-box;
}

.error {
  color: red;
}

/* Button style */
.submit {
  padding: 10px 20px;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.heading{
  color: #080f24;
}

.submit:hover {
  background-color: #13af05;
}
.land {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover; /* Ensure the video covers the entire area */
  z-index: -1;
}



/* Additional styles for other elements can be added here */
