* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(to bottom, #f5f7fa, #c3cfe2);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.main-container {
  width: 600px;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-top:60px ;
}

.header {
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  width: 220px;
  height: 80px;
}

.title h1 {
  font-size: 20px;
  color: #333;
}

.title h2 {
  font-size: 28px;
  color: rgb(1, 71, 154);
  margin: 10px 0;
}

.title p {
  color: #000000;
  font-size: 14px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  gap: 10px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: #b08b57;
  outline: none;
}

.file-upload {
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
}

.file-upload input {
  display: none;
}

#submit-btn {
  background-color:rgb(1, 71, 154);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#submit-btn:hover {
  background-color: #286a2b;
}

/* back to home */
.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 14px;
  color: rgb(1, 71, 154);
  text-decoration: none;
  background-color: #e6f0ff;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.back-button:hover {
  background-color: #cce0ff;
  color: #003366;
}
