/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #ffffff;
  margin-top: 0;
}

/* Form Container */
.form-container {
  width: 100%;
  max-width: 400px;
  margin: 50px auto; /* Adjusted margin for moving the container down */
  background-color: #1e1e1e;
  padding: 20px;
  border-radius: 8px;
}

.form-container label {
  display: block;
  color: #e0e0e0;
  margin-bottom: 5px;
}

.form-container input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background-color: #333;
  border: 1px solid #555;
  color: #e0e0e0;
  border-radius: 4px;
}

.form-container input[type="password"] {
  margin-bottom: 20px;
}

.form-container button {
  width: 100%;
  padding: 10px;
  background-color: #00c853;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

.form-container button:hover {
  background-color: #00b343;
}

.form-container p {
  text-align: center;
  margin-top: 20px;
  color: #e0e0e0;
}

.form-container a {
  color: #00c853;
  text-decoration: none;
}

.form-container a:hover {
  text-decoration: underline;
}

/* Error Message */
.error {
  color: #ff0000;
  margin-bottom: 15px;
  font-size: 14px;
}

/* Password Strength Message */
.password-strength {
  font-size: 14px;
  margin-bottom: 15px;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .form-container {
    width: 90%;
  }
}
