/* style.css untuk form daftar & login simple */
.sur-form {
  max-width: 360px;
  margin: 40px auto;
  background: #121212;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  color: #eee;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sur-form p {
  margin-bottom: 15px;
}

.sur-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 15px;
}

.sur-form input[type="text"],
.sur-form input[type="email"],
.sur-form input[type="password"] {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  background: #1f1f1f;
  color: #eee;
  font-size: 14px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.sur-form input[type="text"]:focus,
.sur-form input[type="email"]:focus,
.sur-form input[type="password"]:focus {
  background: #333;
  outline: none;
}

.sur-form button {
  width: 100%;
  padding: 12px;
  background-color: #00eacb;
  border: none;
  border-radius: 8px;
  color: #121212;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sur-form button:hover {
  background-color: #00c9a6;
}

.sur-form p.message {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.sur-form p.link {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

.sur-form p.link a {
  color: #00eacb;
  text-decoration: none;
}

.sur-form p.link a:hover {
  text-decoration: underline;
}

.sur-form p.error-message {
  color: #ff6b6b;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}
