:root {
  --primary-color: #154c79;
  --primary-dark: #1565c0;
  --secondary-color: #f5f7fa;
  --text-color: #333;
  --border-radius: 12px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --font-main: 'Segoe UI', 'Arial', sans-serif;
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: var(--secondary-color);
}

.login-container {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.logo {
  display: inline-block;
  width: auto;
  margin-bottom: 1rem;
}

.logo img {
  width: 150px;
  margin-top: 0.5rem;
  display: block;
  cursor: pointer;
}

.social-buttons {
  margin-bottom: 1rem;
}

.social-icon {
  width: 48px;
  height: 48px;
  margin: 0 5px;
  cursor: pointer;
}

.form-inputs input[type="email"],
.form-inputs input[type="password"],
.form-inputs button {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
}

/* Os estilos de botão agora vêm do main.css */

#link-login-btn {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  cursor: pointer;
}

#message {
  font-size: 0.95rem;
  margin-top: 1rem;
}

#message.success {
  color: green;
}

#message.error {
  color: red;
}

.legal-links {
  margin-top: 1rem;
  font-size: 0.85rem;
}