/* /public/css/style.css */

/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

body {
  background-color: #f7f9fc;
  padding: 20px;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  align-items: center;
}

.container {
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

h1, h2, h3 {
  margin-bottom: 20px;
  color: #222;
  font-weight: 600;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.3s ease;
  font-size: 14px;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form input[type="tel"]:focus {
  border-color: #007bff;
  outline: none;
}

button {
  background-color: #007bff;
  border: none;
  color: white;
  padding: 12px 18px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

.error-message {
  color: #cc0000;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
}

.success-message {
  color: #28a745;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
}

.link-button {
  background: transparent;
  border: none;
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  margin-top: 10px;
}

.link-button:hover {
  color: #0056b3;
  text-decoration: none;
}

/* Layout específico para dashboard */
.dashboard-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.dashboard-header {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #222;
}
