/* Sign-in page styles (extracted from inline <style>) */
.signin-hero {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
}
.signin-left {
  flex: 1;
  position: relative;
}
.green-blob {
  background: #cfeed3;
  border-radius: 40px;
  padding: 40px 60px 60px 60px;
  position: relative;
}
.hero-photo {
  width: 420px;
  height: 360px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.floating-card {
  position: absolute;
  left: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-width: 300px;
}
.floating-card.top {
  top: -30px;
  transform: translateY(-10px);
}
.floating-card.bottom {
  bottom: -30px;
  left: 0;
}
.floating-card .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #eaf6ee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.signin-right {
  flex: 0 0 460px;
}
.signin-card {
  background: #fff;
  border-radius: 14px;
  padding: 34px 36px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.signin-card h1 {
  font-size: 34px;
  margin: 0 0 18px;
  color: #0b3b2d;
  text-align: center;
}
.form-group {
  margin-bottom: 14px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e3e6e8;
  border-radius: 8px;
}
.actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 18px;
}
.remember {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
}
.btn-login {
  display: block;
  width: 100%;
  background: #214d34;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
}
.forgot-link {
  color: #6b6b6b;
  text-decoration: none;
}
@media (max-width: 900px) {
  .signin-hero {
    flex-direction: column;
    padding: 36px 0;
  }
  .signin-right {
    width: 100%;
    flex: unset;
  }
  .hero-photo {
    width: 320px;
    height: 280px;
  }
}
