* {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

  html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden; /* Prevents scrolling into empty space */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling */
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f8f9fa;
}

 .navbar {
            width: 100%;
            background-color: #002366;
            padding: 10px 0;
            text-align: center;
        }

        .navbar a {
            color: #ffffff;
            padding: 14px 20px;
            text-decoration: none;
            font-weight: 600;
        }

        .navbar a:hover {
            background-color: #001a4d;
            transition: background-color 0.3s ease;
        }

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
}

h1 {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    background-color: #002366; /* Lacivert */
    padding: 20px;
    margin: 0;
    border-radius: 10px;
}

form {
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-top: 10px;
    color: #002366;
    font-weight: 600;
}

input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #002366; /* Lacivert */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

button:hover {
    background: #001a4d; /* Daha koyu lacivert */
}

.footer {
    text-align: center;
    padding: 10px;
    background-color: #002366;
    color: #ffffff;
    position: fixed;
    bottom: 0;
    width: 100%;
}

#warning {
    color: red;
    margin-top: 10px;
    text-align: center;
}

.hero {
     flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    font-family: sans-serif;
    background-color: #ffffff; /* Optional background for the hero section */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
    max-width: 90%; /* Ensures it fits smaller screens */
    width: 500px; /* Optional fixed width for larger screens */
}

.sub-hero {
     flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    font-family: 'Poppins', Arial, sans-serif;
    margin-top: 10px; /* Adds spacing between hero and sub-hero */
    text-align:center;
}

html, body {
  overflow: auto;
  -ms-overflow-style: none;  /* Hide scrollbar in Internet Explorer and Edge */
  scrollbar-width: none;  /* Hide scrollbar in Firefox */
}
body::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome, Safari, and Opera */
}

input, textarea, select, button {
  font-size: 16px !important; /* Ensures iOS doesn't zoom in */
}

