@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  background: url('assets/bg-worldmap.png') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0fdf4;
}

.auth-container {
  display: flex;
  flex-direction: row;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-radius: 15px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
}

.auth-image {
  flex: 1;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-image img {
  max-width: 100%;
  height: auto;
}

.auth-form {
  flex: 1;
  padding: 40px;
}

.auth-form h2 {
  color: #14532d;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #14532d;
}

input {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 15px;
}

button {
  background: #4ade80;
  color: #14532d;
  font-weight: bold;
  padding: 12px;
  border: none;
  width: 100%;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background: #22c55e;
}

.footer-link {
  text-align: center;
  margin-top: 15px;
  color: #14532d;
}

.footer-link a {
  color: #f97316;
  font-weight: 600;
  text-decoration: none;
}

.logo {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .auth-container {
    flex-direction: column;
    margin: 20px;
  }
  .auth-image {
    display: none;
  }
}
