@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #f1f3f6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  display: flex;
  max-width: 1000px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-side {
  flex: 1;
  padding: 40px;
}

.image-side {
  flex: 1;
  background: url('tax-exemption.jpg') center center/cover no-repeat;
}

.logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 150px;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 24px;
  color: #333;
}

form {
  width: 100%;
}

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

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #333;
}

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

textarea {
  resize: vertical;
}

input[type="file"] {
  padding: 6px 0;
}

.checkbox-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}

.checkbox-group input {
  margin-top: 4px;
}

button {
  display: block;
  width: 100%;
  background-color: #0070f3;
  color: white;
  font-size: 16px;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #005bb5;
}

@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .image-side {
    height: 200px;
    background-position: center;
  }
}
