* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Background Video */
#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
}

/* Overlay Container */
.overlay {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  color: white;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: row;
}

/* Left and Right Columns */
.left-column, .right-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* Welcome Section */
.welcome {
  text-align: center;
}
.welcome h1{
  font-size: 44px;
}
.welcome p{
  line-height: 2em;
  margin-top: 20px;
}

.logo {
  max-width: 220px;
  margin-bottom: 20px;
}

/* Form Styling */
form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
}

form h2 {
  margin-bottom: 1rem;
  color: #fff;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
}

form textarea {
  resize: vertical;
}

form button {
  width: 100%;
  padding: 12px;
  background: #00aced;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background: #0084b4;
}

.message {
  margin-top: 15px;
  font-size: 14px;
  padding: 10px;
  border-radius: 5px;
  display: none;
}

.message.success {
  background-color: #d4edda;
  color: #155724;
}

.message.error {
  background-color: #f8d7da;
  color: #721c24;
}


/* Footer */
footer {
  text-align: center;
  padding: 10px;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-column, .right-column {
    padding: 1rem;
  }

  form {
    width: 90%;
  }

  .logo {
    max-width: 100px;
  }
}
