body {
  font-family: Arial, sans-serif;
  background-color: #f0f4f7;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.form-box {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

h2, p {
  text-align: center;
  margin-bottom: 15px;
}

.logo-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
input[type="file"],
textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

textarea {
  resize: none;
}

.two-column {
  display: flex;
  gap: 10px;
}

.two-column .form-group {
  flex: 1;
  margin-bottom: 0;
}

.radio-group {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.submit-btn {
  background-color: #2f80ed;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #246ad1;
}

@media (max-width: 500px) {
  .two-column {
    flex-direction: column;
  }
}
