body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }
.logo {
text-align: center;
margin-bottom: 15px;
}

.logo img {
  width: 150px;   
  height: auto;
}

.form-container {
  width: 400px;                
  margin: 20px auto;
  padding: 15px 20px;         
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  font-family: "Segoe UI", sans-serif;
}

.form-container h2 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
}

.form-container label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
  display: block;
}

.form-container input,
.form-container textarea,
.form-container select {
  width: 100%;
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 8px;
  box-sizing: border-box;
}

.form-container textarea {
  height: 60px;              
  resize: vertical;           
}

.form-container button {
  width: 100%;
  padding: 8px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  background: #007bff;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.form-container button:hover {
  background: #0056b3;
}
