body {
  background: #f8f9fa;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-left {
  background: #fff;
  padding: 40px 36px 32px 36px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(160, 140, 100, 0.10), 0 1.5px 5px rgba(0,0,0,0.04);
  min-width: 330px;
  max-width: 370px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

h2 {
  margin-bottom: 18px;
  color: #b2853c;
  letter-spacing: 0.5px;
  font-size: 24px;
}

label {
  color: #444;
  font-size: 15px;
  margin-bottom: 5px;
  margin-top: 18px;
  display: block;
}

input[type="email"] {
  width: 100%;
  padding: 11px 13px;
  margin: 8px 0 20px 0;
  border: 1.5px solid #eee;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.18s;
}

input[type="email"]:focus {
  border-color: #b2853c;
  outline: none;
}

button[type="submit"] {
  width: 100%;
  padding: 11px 0;
  border-radius: 6px;
  border: none;
  background: #b2853c;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 5px;
}

button[type="submit"]:hover {
  background: #96701e;
}

a {
  color: #b2853c;
  font-size: 14px;
  text-decoration: none;
  transition: text-decoration 0.12s;
}

a:hover {
  text-decoration: underline;
}

p {
  margin: 10px 0 0 0;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .login-left {
    padding: 26px 12px 20px 12px;
    min-width: unset;
    max-width: 97vw;
  }
}