/* General layout */
body {
  font-family: 'Poppins', sans-serif;
  background: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Main container */
.container {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 350px;
}

/* Headings */
h2 {
  color: #111827;
  margin-bottom: 20px;
  font-weight: 700;
}

h3 {
  margin: 15px 0 10px;
  color: #374151;
  font-size: 1rem;
  font-weight: 600;
}

/* Inputs */
input {
  width: 90%;
  padding: 10px;
  margin: 6px 0;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background-color: #f9fafb;
  font-size: 0.95rem;
  outline: none;
  transition: 0.2s ease;
}

input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

/* Buttons */
button {
  width: 95%;
  padding: 10px;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s ease;
  font-weight: 600;
}

button:hover {
  background: #4338ca;
}

/* Sections */
#signup-section,
#login-section,
#link-login-section {
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 15px;
}

#link-login-section {
  border-bottom: none;
}

/* Status text */
#status {
  margin-top: 15px;
  color: #374151;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 400px) {
  .container {
    width: 90%;
    padding: 20px;
  }

  button {
    width: 100%;
  }
}

/* 🌟 Logo Styling 
.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.logo {
  width: 90px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
*/