/* welcome.css */
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
}

.container {
  width: 50%;
  margin: 100px auto;
  text-align: center;
}

h1 {
  color: #333;
}

p {
  color: #666;
}

input[type="text"] {
  padding: 10px;
  margin-top: 10px;
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a049;
}

button:active {
  background-color: #3e8e41;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    width: 80%;
  }

  input[type="text"] {
    width: 80%;
  }
}
