@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap");

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0072b9;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  margin: 40px;
  color: #000000;
}

h1 {
  text-align: center;
  font-size: 25pt;
  font-weight: 700;
}

form {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
input[type="file"],
select,
textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 2px solid #0072b9;
  border-radius: 5px;
  box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 10px;
}

input[type="submit"] {
  margin-top: 20px;
  background-color: #0072b9;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #005f9e;
}

.welcome-header {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 12;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.welcome-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.welcome-message {
  position: absolute;
  text-align: center;
  color: white;
  z-index: 11;
}

.welcome-message h1 {
  font-size: 30px;
  margin-bottom: 20px;
}

.welcome-message button {
  font-size: 18px;
  padding: 10px 20px;
  background-color: #0072b9;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.welcome-message button:hover {
  background-color: #005f9e;
}

.welcome-header {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 12;
}

.welcome-logo {
  height: 40px;
  width: auto;
}

::placeholder {
  color: #888;
}

@media screen and (max-width: 480px) {
  .welcome-message h1 {
    font-size: 20px;
  }

  input[type="submit"] {
    font-size: 14px;
    padding: 8px 16px;
  }
}

.form-layout {
  transition: transform 0.3s ease;
}

.form-box:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* optional, sanfter Schatten */
}

.main-background {
  background: url("stingrays-3966533.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 60px 0;
}

.form-title {
  color: #ffffff;
}

.index-page footer {
  background-color: transparent !important;
}

.index-page footer small {
  color: white;
}

.index-page footer a {
  color: white !important;
}
