body {
  background-color: #f3f4f6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-container {
  max-width: 768px;
  margin: 40px auto;
  padding: 32px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 12px;
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 12px;
}

.logo {
  height: 48px;
  width: auto;
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.subtext {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 16px;
}

.notice {
  font-size: 0.875rem;
  color: #2563eb;
  margin-bottom: 16px;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group,
.form-group-inline {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
}

input[type="text"],
textarea {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1rem;
  width: 100%;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.input-box {
  display: flex;
  align-items: center;
}

.input-box span {
  margin-left: 8px;
  font-weight: bold;
}

.submit-btn-wrapper {
  text-align: center;
  margin-top: 20px;
}

button {
  margin-top: 12px;
  background-color: rgb(30, 47, 97);
  color: white;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #0E162D;
}
