/* Reset and base styles */
body {
  font-family: Galano, Arial, Helvetica, sans-serif;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Prevent scrolling caused by video or content overflow */
}

html, body {
  height: 100%;
  margin: 0;
  background-image: url(./bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/* Video background styles */
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1; /* Keep the video in the background */
}

/* Container and content styles */
.container {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2; /* Ensure content is above the video */
  padding: 20px;
  border: 4mm ridge rgba(253, 69, 86);
  /* border-radius: 70px;
  border-color: rgba(253, 69, 86, 0.4); */
  /* background-color: rgba(253, 69, 86, 0.4); */
  
}

/* Form styling */
form {

  padding: 20px;
  border-radius: 10px;
}

form textarea, form select, form input {
  border: 1px solid #FD4556;
  background-color: #101126;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 8px;
  color: white;
}

/* Button styling */
.button {
  appearance: button;
  backface-visibility: hidden;
  background-color: #FD4556;
  border-radius: 6px;
  border-width: 0;
  box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .1) 0 2px 5px 0, rgba(0, 0, 0, .07) 0 1px 1px 0;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Ubuntu, sans-serif;
  font-size: 100%;
  height: 44px;
  line-height: 1.15;
  margin: 12px 0 0;
  outline: none;
  overflow: hidden;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-transform: none;
  transform: translateZ(0);
  transition: all .2s, box-shadow .08s ease-in;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
}

.button:disabled, .button:focus {
  box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
}

/* Miscellaneous */
.hidden {
  display: none;
}

.warningtext {
  color: white;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.displayed-image {
  width: 100px; /* Adjust as needed */
  height: 100px; /* Adjust as needed */
  border: 1px solid #ddd; /* Placeholder border */
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content img {
  width: 90%; /* Smaller than the dropdown to fit */
  padding: 5px;
  cursor: pointer;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}
