body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  color: #333;
}

.btn {
  background: #ec4899;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover {
  background: #db2777;
}

.btn-outline {
  background: white;
  border: 2px solid #ec4899;
  color: #ec4899;
  padding: 8px 16px;
  border-radius: 8px;
}
.btn-outline:hover {
  background: #ec4899;
  color: white;
}

.btn-social {
  display: block;
  margin: 5px 0;
  width: 100%;
  border-radius: 8px;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.google {
  background: #ea4335;
  color: white;
}
.facebook {
  background: #1877f2;
  color: white;
}
.apple {
  background: black;
  color: white;
}

.btn-small {
  border: none;
  background: #fce7f3;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 6px;
}

.welcome-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, #f9a8d4, #f472b6);
  color: white;
  text-align: center;
}
.welcome-container h1 {
  font-size: 2.5rem;
}

.auth-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #fff0f6;
}
.form-container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 350px;
}
.input-group {
  margin-bottom: 15px;
}
.input-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}
.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}
.checkbox-group {
  margin: 8px 0;
  font-size: 14px;
}
.forgot-link {
  font-size: 13px;
  color: #ec4899;
  text-decoration: none;
}

.navbar {
  background: #ec4899;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-pic {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

/* === TASKS === */
.task-input {
  display: flex;
  gap: 10px;
  padding: 20px;
}
.task-input input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.task-filter {
  display: flex;
  gap: 10px;
  padding: 0 20px 20px;
}

.task-list {
  padding: 0 20px;
}
.task-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff0f6;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 10px;
}

.task-content {
  flex: 1;
  margin-left: 10px;
}
.task-content h3 {
  margin: 0;
  font-size: 16px;
  color: #db2777;
}

.task-actions {
  display: flex;
  gap: 6px;
}

/* === STATS === */
.stats {
  padding: 20px;
}
.progress-bar {
  width: 100%;
  height: 10px;
  background: #f3f4f6;
  border-radius: 5px;
}
.progress {
  height: 10px;
  background: #ec4899;
  border-radius: 5px;
}
