* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body {
  height: 100vh;
}

.container {
  display: flex;
  height: 100%;
}

.left {
  width: 40%;
  background-image: url("image.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.logo {
  position: absolute;
  top: 20%;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 40px;
  padding: 20px 0;
  letter-spacing: 3px;
}

.right {
  width: 60%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro {
  max-width: 500px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.form-section {
  background: white;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-section h2 {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

label {
  font-size: 12px;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

input {
  padding: 8px;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  transition: 0.2s;
}

input:focus {
  border: 1px solid #3b82f6;
  box-shadow: 0 0 5px rgba(59,130,246,0.5);
  outline: none;
}

input:invalid {
  border: 1px solid red;
}

.form-footer {
  margin-top: 20px;
}

button {
  background-color: #596D48;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  opacity: 0.9;
}

.form-footer p {
  margin-top: 15px;
  font-size: 14px;
}

.form-footer a {
  color: #596D48;
  text-decoration: none;
  font-weight: bold;
}