@font-face {
    font-family: "nimbus";
    src: url("fonts/nimbus-sans-extd-black.otf") format("opentype");
  }
h1{
    font-family:"nimbus";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {

  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.logo-top-wrapper {
  text-align: center;
  margin-top: 30px;
}

.logo-top {
  width: 170px;
  height: 170px;
  object-fit: contain;
  animation: zoomIn 1s ease;
}

.form-container {
  background:#242424;
  padding: 40px;
  border-radius: 20px;
  max-width: 400px;
  margin: 35px auto;
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  position: relative;
  animation: fadeInUp 1s ease forwards;
  transform: translateY(50px);
  opacity: 0;
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.form-container h1 {
  text-align: center;
  margin-bottom: 20px;
  animation: slideIn 1.2s ease-in-out;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.form-group {
  margin-bottom: 15px;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
  transform: scale(1.05);
  outline: none;
}

.form-group input[type="checkbox"] {
  margin-right: 8px;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
}

.form-group.checkbox label {
  margin-bottom: 0;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #f0aa3e;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: "nimbus";
}

button:hover {
  background-color: #b87001;
  transform: scale(1.02);
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.logo-bottom-wrapper {
  text-align: center;
  min-height: 150px;
}

.logo-bottom {
    width: 200px;
    height: 200px;
  object-fit: contain;
  animation: fadeIn 1.5s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-container {
    margin: 30px 20px;
    padding: 30px 20px;
    max-width: 100%;
  }

  .logo-top {
    width: 100px;
    height: 100px;
  }

  .logo-bottom {
    width: 40%;
    height: auto;
  }

  button {
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .form-container h1 {
    font-size: 20px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input[type="text"],
  .form-group input[type="email"] {
    font-size: 14px;
  }

  .form-group.checkbox {
    font-size: 13px;
  }
}



