/* registration.css */

/* General Body Styles */
#registration {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #ebf8ff, #bee3f8);
  margin: 0;
  padding: 0;
  color: #000;
}

/* Container */
#registration .container {
  max-width: 700px;
  margin: 40px auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  position: relative;
}

/* Header */
#registration .header {
  text-align: center;
  margin-bottom: 30px;
}
#registration .header h1 {
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 10px 0;
}
#registration .header p {
  color: #000;
  margin: 0;
}

/* Form Labels */
#registration label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #000;
}

/* Form Inputs */
#registration input,
#registration textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  color: #000;
  background-color: #fff;
}
#registration input::placeholder,
#registration textarea::placeholder {
  color: #000;
  opacity: 0.7;
}

/* Buttons */
#registration button {
    margin-top: 20px;
    width: 100%;
    background-color: #dc2626;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
  }
 #registration button:hover {
    background-color: #b91c1c;
  }
  #registration .confirmation {
    text-align: center;
    padding: 40px 20px;
  }
  #registration .confirmation h2 {
    color: #000;
  }
  #registration .confirmation p {
    color: #000;
  }

  /* ---------------- Dark Mode (Overrides) ---------------- */
@media (prefers-color-scheme: dark) {
  #registration {
    background: linear-gradient(to bottom right, #1e293b, #0f172a);
    color: #f8fafc;
  }

  #registration .container {
    background: #1e293b;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  }

  /* Header */
  #registration .header h1,
  #registration .header p {
    color: #f8fafc;
  }

  /* Labels */
  #registration label {
    color: #f8fafc;
  }

  /* Inputs & Textarea */
  #registration input,
  #registration textarea {
    background-color: #334155;
    border: 1px solid #475569;
    color: #f8fafc;
  }
  #registration input::placeholder,
  #registration textarea::placeholder {
    color: #cbd5e1;
    opacity: 0.8;
  }

  /* Buttons */
  #registration button {
    background-color: #dc2626;
    color: #fff;
  }
  #registration button:hover {
    background-color: #b91c1c;
  }

  /* Confirmation */
  #registration .confirmation h2,
  #registration .confirmation p {
    color: #f8fafc;
  }
}


#video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 10;
}

#play-button {
    position: absolute;
    width: 90px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s, filter 0.3s;
  }


#play-button:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 15px rgba(0,0,0,0.6));
}
