:root {
  --main-green: #0D6879;
  --dark-green: #2E7C8B;
  --medium-green: #4C8F9C;
  --light-green: #669FAA;
  --extra-light-green: #E1EDEF;
  --light-grey: #E0E0E0;
  --grey: #757575;
  --black: #2E2E2E;
  --red: #EE3026;
}
body { font-family: 'Poppins', sans-serif; background-color: #f4f7f6; margin: 0; padding: 0; }
.container { display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden;  }
.login-container { display: flex; align-items: center; justify-content: center; flex:1; }
.login-box {  background-color: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); width: 100%; max-width: 400px; margin: 32px; display: flex; flex-direction: column; gap: 2rem; }
.image-container img { width: 100%; height: 100%; object-fit: cover; object-position: center;}
.logo-container { width: 100%; display: flex; align-items: center; justify-content: center; }
.logo-container img { width: auto; height: 48px; }
.image-container {
  position: relative;
  flex: 1;
  height: 100vh;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
}
.overlay-title {
  font-weight: 900;
  font-size: 40px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.overlay-subtitle {
  font-weight: 500;
  font-size: 24px;
  max-width: 600px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
h2 { text-align: center; color: #333; margin-bottom: 20px; }
form { display: flex; flex-direction: column; gap: 1.25rem; }
label { display: block; margin-bottom: 5px; color: #555; }
input[type="text"], input[type="password"], input[type="email"] { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box; }
input:focus { outline-color: var(--main-green); border-color: var(--main-green);}
button { width: 100%; margin-top: 0.75rem; padding: 10px; background-color: var(--main-green); color: white; border: none; border-radius: 4px; cursor: pointer; font-size: 16px; }
button:hover { background-color: var(--dark-green); }
.error-message { color: #d93025; text-align: center; margin-top: 15px; }
.forgot-password-link { text-align: center; margin-top: 1rem; }
.forgot-password-link a { color: var(--main-green); text-decoration: none; font-size: 14px; }
.forgot-password-link a:hover { text-decoration: underline; color: var(--dark-green); }
.reset-info { text-align: center; }
.reset-info h3 { color: var(--black); margin: 0 0 0.5rem 0; font-size: 20px; }
.reset-info p { color: var(--grey); margin: 0; font-size: 14px; line-height: 1.5; }
.success-message { color: var(--main-green); text-align: center; padding: 1rem; background-color: var(--extra-light-green); border-radius: 4px; margin-bottom: 1rem; }

@media (max-width: 768px) {
  .image-container { display: none; }
}
@media (min-width: 768px) {
  .image-container { flex: 1; height:100vh; }
}