@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body, html {
  justify-content: center;
  min-height: 100vh;
  scroll-behavior: smooth;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  border: 0;
}

.reply-item {
  transition: all 0.25s ease;
}

.field-error {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545; /* Bootstrap danger red */
}

.wall-post {
  transition: opacity 0.3s ease;
}

.new-members {
  background-color: #e3e3e375;
  margin-top:.51rem;
  padding: 1rem;
  border-radius: .5rem;
  max-width: 300px;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="file"],
select,
textarea {
  height: 40px;
  width: 100%;
  padding-top: 0.3rem;
  padding-left: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="file"]:focus,
select:focus,
textarea:focus {
  border-color: #00aaaa;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

/* Submit Button */
button[type="submit"] {
  padding: 0.75rem;
  background-color: #00aaaa;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #009c9c;
}

/* Error Messages */
.form-error-message {
  background-color: #f8d7da;
  color: #842029;
  padding: 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  border: 1px solid #f5c2c7;
}

.field-error {
  color: red;
  font-size: 0.9em;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

/* Landing Page Extras (if reused) */
.centered-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  padding: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.2rem;
}

.landing-page-logo {
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 180px;
}

.login-title-style {
  color: #00aaaa;
  font-size: 21pt;
  font-weight: 500;
}

.landing-page-intro-text {
  text-align: center;
  margin-bottom: 1.5rem;
}

.landing-page-intro-text h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.landing-page-intro-text p {
  font-size: 1rem;
  color: #666;
}

.form-text {
  width: 100%;
  text-align: center;
  margin-top: -1rem;
  font-size: 8pt;
  color: #7e7e7e;
}

.category-container {
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 1rem;
  border-radius: .5rem;
  padding: .5rem 0;
  margin: .5rem 0;
  background-color: #00aaa9;
}

.category-holder {
  align-content: center;
  margin: 0 auto;
  overflow: hidden;
}

.category-filter {
  width: 120px;
  height: 120px;
  font-size: 10pt;
  text-align: center;
  border: none;
  color: #fff;
  background-color: #00aaa9;
  border-radius: .5rem;
  transition: all 0.3s ease-in;
}

.category-filter:hover {
  color: #ffffff;
  background-color: #ffffff36;
}






