.notification {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color:  rgba(80, 180, 120);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-width: 300px;
}

.notification.show {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.comment-bubble {
  position: absolute;
  top: 75%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 75%;
  max-width: 200px;
  margin-top: 10px;
  display: none;
}

.comment-bubble.show {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.comment-item {
  color: #333;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease, height 0.3s ease, margin 0.3s ease;
}

.comment-item.met {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.comment-item::before {
  content: "•";
  margin-right: 8px;
  color: #ff4d4d;
}

.comment-item.met::before {
  content: "✓";
  color: #28a745;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.container {
  background: linear-gradient(to right, rgba(27, 77, 62), rgba(80, 180, 120));
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 20px auto;
}

.form-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 15px;
}

.logo-container {
  text-align: center;
}

.logo {
  max-width: 100px;
  border-radius: 50%;
}

h2 {
  color: white;
  margin-top: 15px;
  font-weight: 400;
  font-size: 22px;
  text-align: center;
}

.section-title {
  color: #ffffff;
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: 600;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-column {
  flex: 1;
  position: relative;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
  color: white;
  text-align: left;
  font-size: 16px;
}

.optional {
  color: #cccccc;
}

.container input[type="text"],
.container input[type="password"],
.container input[type="tel"],
.container input[type="email"],
.container select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid black;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-size: 15px;
}

.container input[type="text"]:focus,
.container input[type="password"]:focus,
.container input[type="tel"]:focus,
.container input[type="email"]:focus,
.container select:focus {
  border-color: black;
  box-shadow: 0 0 10px black;
  outline: none;
}

.upload-text,
.dropdown-text {
  margin-bottom: 12px;
  font-size: 16px;
  color: white;
}

.custom-file-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #e8e8e8;
  background-color: rgba(84, 88, 97, 0.7);
  padding: 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 10px;
}

.custom-file-upload i {
  font-size: 35px;
  color: #e8e8e8;
}

input[type="file"] {
  display: none;
}

.file-name-display {
  display: block;
  margin-top: 5px;
  color: rgba(27, 77, 62);
  font-size: 1rem;
  font-style: italic;
  background-color: white;
  border-radius: 15px;
  width: 250px;
  text-align: center;
  margin-bottom: 10px;
}

.dropdown-container {
  position: relative;
  margin-bottom: 20px;
}

.dropdown-button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  color: black;
}

.dropdown-list {
  display: none;
  position: fixed;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  margin-top: 8px;
  max-height: 200px;
  overflow-y: auto;
}

.dropdown-list label {
  display: block;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  color: black;
}

.dropdown-list label:hover {
  background: #f4f4f4;
}

.visible {
  display: block;
}

.selected-items-display {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
  color: white;
}

.submit-btn-login {
  width: 100%;
  padding: 15px;
  background-color: white;
  color: rgba(27, 77, 62);
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.submit-btn-login:hover {
  background-color: rgba(27, 77, 62);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.create-account-login {
  color: white;
  cursor: pointer;
  margin-top: 20px;
  display: block;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 16px;
  text-align: center;
}

.create-account-login:hover {
  color: #cccccc;
}

.toggle-password {
  position: absolute;
  top: 35%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  font-size: 18px;
}

.toggle-password:hover {
  color: #000;
}

.dropdown-list::-webkit-scrollbar {
  width: 8px;
}

.dropdown-list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.dropdown-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.form-content::-webkit-scrollbar {
  width: 10px;
}

.form-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.form-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

@media (max-width: 600px) {
  .container {
    max-width: 95%;
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-column {
    flex: none;
    width: 100%;
  }

  .form-content {
    padding-right: 8px;
  }

  .dropdown-button,
  .submit-btn-login {
    font-size: 15px;
  }

  .comment-bubble {
    max-width: 100%;
  }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}