
/* Login Specific Styles */
.auth-container {
  max-width: 500px;
  margin: 40px auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: none;
  color: #ff6b35;
  font-weight: bold;
  font-size: 24px;
}

.auth-header .logo-img {
  font-size: 32px;
  margin-right: 10px;
}

.auth-header h1 {
  font-size: 24px;
  color: #333;
  margin: 0;
}

.auth-header p {
  color: #666;
  margin-top: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: #ff6b35;
  outline: none;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.remember-me {
  display: flex;
  align-items: center;
}

.remember-me input {
  margin-right: 8px;
}

.forgot-password {
  color: #ff6b35;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

.btn-auth {
  width: 100%;
  padding: 14px;
  background-color: #ff6b35;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-auth:hover {
  background-color: #e64a19;
}

.auth-footer {
  text-align: center;
  margin-top: 25px;
  color: #666;
}

.auth-footer a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 500;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 25px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.auth-divider span {
  padding: 0 10px;
  color: #666;
  font-size: 14px;
}

.social-login {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.social-btn:hover {
  background-color: #eee;
}

/* Small helper for consistent spacing */
.mb-4 {
  margin-bottom: 1rem;
}
