/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: white; /* Green background */
  color: #fff; /* White text on green background */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column; /* Stack the content vertically */
}

.welcome-message {
  text-align: center;
  margin-bottom: 20px; /* Space between the welcome message and the registration form */
  position: absolute;
  top: 88px;
}

.welcome-message h1 {
  font-family: 'Poppins', sans-serif;  /* Modern, friendly font */
  font-size: 55px; /* Slightly larger text size */
  color: #fff; /* White text for the welcome message */
  text-transform: none;  /* Regular case for a more inviting look */
  letter-spacing: 0.5px;
  font-weight: bold;
}

.welcome-message h3 {
  font-family: 'Poppins', sans-serif;  /* Modern, friendly font */
  font-size: 28px; /* Slightly larger text size */
  color: #2ba870; /* White text for the welcome message */
  text-transform: none;  /* Regular case for a more inviting look */
  font-weight: bold;
}

.login-container {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: absolute;
  top: 235px;
}

h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
  text-align: left; /* Align labels and inputs to the left */
}

label {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
  display: block; /* Make the label a block-level element */
}

form {
  display: flex;
  flex-direction: column;
}

input {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%; /* Make inputs take full width of the form */
  box-sizing: border-box; /* Ensure padding does not overflow */
}

input:focus {
  border-color: #2ba870; /* Green border on focus */
  outline: none; /* Remove default outline */
}

.login-button {
  background-color: #2ba870; /* Green button */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%; /* Make the button take full width */
}

.login-button:hover {
  background-color: #239a5b; /* Darker green for hover */
}

.signup-link {
  margin-top: 25px;
  font-size: 14px;
  color: #777;
}

.forgot-password {
  margin-top: 6px;
  font-size: 14px;
  color: #777;
}

.signup-link a, .forgot-password a {
  color: #2ba870; /* Green text for links */
  text-decoration: none;
}

.signup-link a:hover, .forgot-password a:hover {
  text-decoration: underline;
}

.contact-info {
  position: fixed;
  bottom: 5px;
  right: 10px;
  font-size: 14px;
  color: black;
}

.error-message{
  color: #e10c0c;
  text-align: center;
}
