* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

img {
  width: 6rem;
  height: auto;
}

.main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
  text-align: center;
  gap: 2rem;
}


form h1 {
  font-size: 1.9rem;
  color: white;
  margin-bottom: 1.5rem;

}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 400px;
  max-width: 100%;
  background: #181129;
  padding: 2rem;
  min-height: 100vh;
}

button {
  color: white;
  background: dodgerblue;
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1.1em;
  transition: 0.4s;
  width: 100%;
  height: fit-content;
  margin-top: 1rem;
}

button:hover {
  cursor: pointer;
  background-color: rgb(16, 102, 189);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.form-group input {
  padding: 0.7rem;
  border: 1px solid #5C5669;
  background: #2E273D;
  width: 100%;
  font-size: 1.2em;
  color: white;
}

.form-group input:focus {
  outline: 2px solid dodgerblue;
  border-bottom: dodgerblue;
}

.form-group label {
  font-size: 0.9em;
  font-weight: 500;
  color: #8F8B99;
}



.footer {
  text-align: center;
  color: #ccc;
  font-size: 0.85rem;
  margin-top: auto;
  padding-top: 2rem;
}

#myVideo {
  position: fixed;
  left: -20vw;
  top: 0;
  min-width: 100%;
  min-height: 100%;
}

.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100vw;
  height: 100vh;
}