/* ----------- LOGIN / REGISTER STYLE ----------- */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #60d394, #809bce);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-container {
  background: #fff;
  border-radius: 15px;
  padding: 40px 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 350px;
  transition: transform 0.2s ease-in-out;
}

.auth-container:hover {
  transform: scale(1.02);
}

h1 {
  color: #4a4a4a;
  font-size: 26px;
  margin-bottom: 25px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0 15px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.2s;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #809bce;
  outline: none;
  box-shadow: 0 0 4px rgba(128, 155, 206, 0.4);
}

button {
  background: #60d394;
  border: none;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  transition: background 0.2s ease-in-out;
}

button:hover {
  background: #45b67a;
}

.msg {
  margin-top: 15px;
  color: #e74c3c;
  font-weight: 500;
}

.alt-link {
  margin-top: 20px;
  display: block;
  color: #809bce;
  text-decoration: none;
  font-size: 14px;
}

.alt-link:hover {
  text-decoration: underline;
}
