/* General Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  height: 100vh;
}

/* Form Container */
.container {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

/* Input Fields */
input,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

/* Placeholder Styling */
input::placeholder {
  color: #999;
}

/* Select Styling */
select {
  background: #fff;
  cursor: pointer;
}

/* File Input Styling */
#image {
  border: none;
  background: transparent;
  cursor: pointer;
}

/* Buttons */
.btn {
  padding: 10px !important;
  font-size: 18px !important;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}


img{
    width: 50px;
    height: 50px;
}
/* Responsive Design */
@media (max-width: 400px) {
  .container {
    width: 90%;
  }
}
