body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #e8e8ff, #fdf6e3);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #5a3dff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: #5a3dff;
}

.nav-btn {
  background: #5a3dff;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
}

.nav-btn:hover {
  opacity: 0.85;
}

/* FORM CARD */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85vh;
}

.card {
  background: white;
  padding: 40px;
  width: 380px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card h1 {
  margin-bottom: 10px;
}

.card p {
  color: gray;
  margin-bottom: 25px;
}

label {
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin-top: 15px;
}

input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-top: 6px;
}

button {
  width: 100%;
  margin-top: 25px;
  padding: 14px;
  background: #5a3dff;
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}
