/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: linear-gradient(135deg, #0d2f5d, #15407c);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  padding: 20px;
}

/* Containers */
.login-container, .solicitacao-container {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.2);
  max-width: 420px;
  width: 100%;
  margin-bottom: 20px;
  animation: fadeIn 0.6s ease-in-out;
}

h2 {
  color: #0d2f5d;
  margin-bottom: 20px;
  text-align: center;
  font-size: 22px;
}

/* Inputs e Selects */
label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  color: #333;
}

input, select, button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.3s;
}

input:focus, select:focus {
  outline: none;
  border-color: #0d2f5d;
  box-shadow: 0 0 6px rgba(13,47,93,0.5);
}

/* Campo Centro de Custo */
#centroCusto {
  background: #f0f0f0;
  color: #555;
}

/* Botões */
button {
  background: #0d2f5d;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, background 0.3s ease;
}

button:hover {
  background: #15407c;
  transform: scale(1.05);
}

/* Senha com Olho */
.senha-container {
  position: relative;
}

.senha-container input {
  padding-right: 40px;
}

.senha-container .toggle-eye {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #0d2f5d;
}

/* Tabela Materiais */
.tabela-container {
  margin-top: 10px;
  overflow-x: auto;
}

.tabela-container table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}

.tabela-container th {
  background: #e0e0e0;
  color: #000;
  padding: 10px;
  text-align: center;
}

.tabela-container td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.tabela-container .btn-remover {
  color: red;
  cursor: pointer;
  font-size: 18px;
}

/* Animação */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 600px) {
  .login-container, .solicitacao-container {
    padding: 15px;
  }

  input, select, button {
    font-size: 14px;
    padding: 10px;
  }

  .tabela-container th, .tabela-container td {
    font-size: 13px;
    padding: 8px;
  }
}