* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #e6f4ea;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Login box */
.login-box {
  width: 350px;
  padding: 40px;
  background: white;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Title */
.title {
  font-size: 32px;
  color: #0f3d2e;
  margin-bottom: 10px;
}

/* Subtitle */
.subtitle {
  font-size: 14px;
  margin-bottom: 25px;
}

/* Input fields */
.input-field {
  width: 100%;
  height: 40px;
  margin-bottom: 15px;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Login button */
.login-btn {
  width: 100%;
  height: 40px;
  background-color: #0f3d2e;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.login-btn:hover {
  background-color: #1d5c45;
}

/* Signup */
.signup-text {
  margin-top: 15px;
  font-size: 14px;
}

.signup-text a {
  color: #2aa56a;
  text-decoration: none;
  font-weight: bold;
}