* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c3e8c3, #346d3e);
}

.container {
  display: flex;
  width: 90%;
  max-width: 1100px;
  height: 90vh;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.left-panel {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo {
  text-align: center;
  font-weight: bold;
  color: #2c7a3c;
  font-size: 20px;
  margin-bottom: 40px;
}

h1 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.subtext {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
  margin-top: 20px;
}

input[type="text"],
input[type="password"] {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-style: italic;
  outline: none;
  transition: border-color 0.3s;
}

input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #603ebf;
}

input::placeholder {
  font-style: italic;
  color: #999;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
  font-size: 13px;
}

.login-btn {
  background: linear-gradient(90deg, #3a9943, #2c7a3c);
  color: white;
  padding: 12px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 10px;
  margin-top: 20px;
  width: 50%;
  align-self: center;
}



footer {
  margin-top: auto;
  font-size: 12px;
  color: #888;
}

footer a {
  font-style: italic;
  color: #666;
  text-decoration: none;
  margin: 0 4px;
}

/* Right Panel */
.right-panel {
  flex: 1;
  background: url('https://imgs.search.brave.com/A66saMM5UMCuygxa_lxp0bppXjU2oL_eMscEubMfVfI/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly93d3cu/Y2hvaWNlaW50ZXJu/YXRpb25hbC5pbi93/cC1jb250ZW50L3Vw/bG9hZHMvMjAyNC8w/Ny91bml2ZXJzaXR5/X29mX2NoZXN0ZXIt/MTAyNHgxMDA1Lmpw/ZWc');
  background-size: cover;
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-self: flex-end;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.get-started {
  background: white;
  color: #235c29;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 600;
}

.product-image img {
  max-width: 250px;
  margin-top: auto;
}

.error {
  color: red;
  text-align: center;
  margin-top: 1rem;
}