body {
  font-family: Arial, sans-serif;
  color: #363636 !important;
}

h1 {
  font-size: 2.2rem;
  font-weight: 600;
}
h2,
h3,
h4,
h5 {
  font-size: 1.5rem;
  font-weight: 600;
}

.text-blue {
  color: #033b91;
}

.logo {
  max-width: 300px;
}
.banner {
  background: #f8f9fa;
  color: #545454;
  padding: 80px 0;
}
.default-spc {
  padding: 80px 0;
}
.addlisting {
  background-color: #000000;
  color: #fff;
  border-radius: 20px;
}
.cat-icon {
  max-width: 70px;
}
.addlisting:hover {
  color: #fff;
}
.hero {
  background: #033b91;
  color: #fff;
  padding: 80px 0;
}
img.grayscale {
  -webkit-filter: grayscale(80%);
  filter: grayscale(80%);
}
.category-card {
  transition: 0.3s;
}
h3.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #033b91;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.footer {
  background: #222;
  color: #bbb;
}
.footer a {
  color: #bbb;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}

/* Form-section */
.post-your-list {
  font-weight: 600;
  font-size: 1.5rem;
  color: #02378f;
}
.form-area {
  background-color: #f3f3f3;
  padding: 15px;
}

/* Login */
.loginForm {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(10px);
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.logo p {
  color: #666;
  font-size: 14px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.login-btn:active {
  transform: translateY(0);
}

.divider {
  text-align: center;
  margin: 24px 0;
  color: #999;
  position: relative;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e1e5e9;
}

.divider span {
  background: white;
  padding: 0 16px;
  font-size: 14px;
}
