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

body {
  background-color: #bebdb3; /* similar to the Figma background */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  background-color: #bebdb3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-section h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.form-section .dot {
  color: #000;
}

.form-section p {
  margin-bottom: 30px;
  color: #333;
}

.form-section a {
  color: #000;
  text-decoration: underline;
}

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

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.input-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.forgot-password {
  text-align: right;
  margin-bottom: 30px;
}

button {
  background-color: #111;
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.image-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d3d1c5;
  overflow: hidden;
}

.image-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
