/* Auth Pages Styling */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
  padding: 20px;
}

.auth-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}

.auth-header h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.auth-header p {
  color: #666;
  font-size: 16px;
}

.auth-form {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #333;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-options a {
  color: #333;
  text-decoration: none;
}

.form-options a:hover {
  text-decoration: underline;
}

.auth-btn {
  width: 100%;
  background: #333;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.auth-btn:hover {
  background: #555;
}

.auth-footer {
  text-align: center;
  font-size: 14px;
  color: #666;
}

.auth-footer p {
  margin-bottom: 10px;
}

.auth-footer a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Page Content Styling */
.page-content {
  padding: 100px 0;
  min-height: 60vh;
}

.page-header {
  text-align: center;
  margin-bottom: 80px;
}

.page-title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #333;
}

.page-description {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.nav-link.active {
  color: #333;
  font-weight: 600;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.project-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card.featured {
  grid-column: span 2;
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: top;
}

.project-card.featured img {
  height: 400px;
}

.project-content {
  padding: 30px;
}

.project-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.project-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.project-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.project-link:hover {
  gap: 12px;
}

@media (max-width: 768px) {
  .project-card.featured {
    grid-column: span 1;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}
