body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
  overflow-x: hidden;
}

.background-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 20vh;
  gap: 0px;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-container {
  position: relative;
  max-width: 500px;
  margin: 60px auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  text-align: center;
}

.form-header {
  margin-bottom: 1.5rem;
}

.form-header h1 {
  font-size: 1.8rem;
  margin: 0;
  color: #333;
}

.form-header p {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: #555;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, select, button {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

button {
  background-color: #6c63ff;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #5848e5;
}
