.login-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Style for the login form */
.login-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Style for form fields */
.form-field {
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  background-color: #fff;
  width: 100%; /* Set a specific width for uniform size */
}

/* Style for labels within form fields */
.form-field label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Style for input fields */
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="password"],
.form-field input[type="checkbox"] {
  width: 100%;
  padding: 8px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 1px;
  font-size: 14px;
  box-sizing: border-box; /* Include padding and border in the width calculation */
  margin-bottom: 10px;
}

/* Style for the show password button */
.show-password {
  margin-top: 5px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
}

/* Style for login actions */
.login-actions {
  display: flex;
  flex-direction: column; /* Adjust to a column layout for centered items */
  align-items: center;
  margin-top: 15px;
}

/* Style for login options */
.login-options {
  text-align: center;
  margin-top: 15px;
}

/* Additional styles */
.error-message {
  color: #d9534f;
  margin-bottom: 10px;
}

.forgot-password {
  background-color: transparent;
  border: none;
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
}

.create-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%; /* Set the width to 100% */
}

.create-btn:hover {
  background-color: #0056b3;
}
