/* css/style.css */

/* Reset & basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #fdfdfd;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #4a148c;
  color: #fff;
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #7b1fa2, #ab47bc);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  background-color: #fff;
  color: #7b1fa2;
  padding: 12px 25px;
  margin: 5px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.hero-buttons .btn:hover {
  background-color: #ddd;
}

.hero-buttons .btn-secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.hero-buttons .btn-secondary:hover {
  background-color: #fff;
  color: #7b1fa2;
}

/* Plans Section */
.plans {
  padding: 80px 20px;
  text-align: center;
}

.plans h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.plan-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.plan-cards .card {
  background-color: #f3e5f5;
  padding: 30px 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

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

/* Categories Section */
.categories {
  padding: 80px 20px;
  text-align: center;
}

.categories h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.category-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.category-card {
  background-color: #ce93d8;
  color: #fff;
  padding: 50px 30px;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.category-card:hover {
  transform: scale(1.05);
}

















/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

body.auth-body {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* ===== AUTH CONTAINER ===== */
.auth-container {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.auth-container:hover {
    transform: translateY(-3px);
}

/* ===== HEADINGS ===== */
.auth-container h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 30px;
}

/* ===== INPUTS ===== */
.auth-container input {
    width: 100%;
    padding: 14px 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
}

.auth-container input:focus {
    border-color: #667eea;
    box-shadow: 0 0 6px rgba(102, 126, 234, 0.4);
    outline: none;
}

/* ===== BUTTONS ===== */
.auth-container button {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.auth-container button:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-2px);
}

/* ===== LINKS ===== */
.auth-container p {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

.auth-container p a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

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

/* ===== ERROR MESSAGE ===== */
.auth-error {
    color: #e74c3c;
    font-size: 13px;
    margin-bottom: 15px;
    display: none;
    text-align: left;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .auth-container {
        padding: 35px 20px;
        width: 90%;
    }

    .auth-container h2 {
        font-size: 24px;
    }

    .auth-container button {
        font-size: 15px;
    }
}
