/* Estilos personalizados */

body {
  background-color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

/* Cores base inspiradas na Workana */
.w3-blue {
  background-color: #1A73E8 !important; /* Azul Workana */
  color: white !important;
}

.w3-text-blue {
  color: #1A73E8 !important;
}

/* Input focus azul */
.w3-input:focus, .w3-select:focus {
  border-color: #1A73E8 !important;
  box-shadow: 0 0 5px #1A73E8;
}

/* Botão hover */
.w3-button.w3-blue:hover {
  background-color: #125AB3 !important;
}

/* Links */
a.w3-text-blue:hover {
  text-decoration: underline;
}

/* Container centralizado padrão */
.container-center {
  max-width: 450px;
  margin: 40px auto;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Estilo dos inputs */
input[type="text"],
input[type="email"],
input[type="password"],
select {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}

/* Botões principais */
.btn-primary {
  background-color: #1A73E8;
  color: white;
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background-color: #125AB3;
}

/* Toggle de usuário */
.user-toggle {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.user-toggle label {
  padding: 10px 18px;
  border: 2px solid #1A73E8;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #1A73E8;
  font-weight: 500;
}

.user-toggle input[type="radio"] {
  display: none;
}

.user-toggle input[type="radio"]:checked + label {
  background-color: #1A73E8;
  color: white;
}
