* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

header {
  background-color: #fff;
  border-bottom: solid 1px #c3c3c3;
  height: 48px;
}

body {
  background-color: #fff;
  font-family: Arial, sans-serif;
}

form {
  margin: 0 15px 0 15px;
}

label {
  display: block;
  color: #252525;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 0;
}

input,
select {
  padding: 10px;
  width: 100%;
  border: solid 1px #bbb;
  border-radius: 3px;
  background-color: #fff;
  
}

input:focus {
  border-color: #ff0000;
  outline: solid 2px #ff0000;
}

.no-click {
  pointer-events: none; /* Impede clique e foco */
  background-color: #f5f5f5; /* Visual de campo desabilitado */
  border: 1px solid #ccc;
  color: #555;
}

/* Botões */

button {
  padding: 10px;
  width: 100%;
  border: solid 2px transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1rem;
}

#btn {
  background-color: transparent;
  color: #ff0000;
  border-color: #ff0000;
}

#btn-success {
  background-color: #ff0000;
  color: #fff;
}

/* Infos */

#info {
  background-color: #e6effc;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 100%;
  margin: 20px auto;
  color: #333;
}

/* Alertas */

#wrongtext {
  color: #e23636;
  font-weight: 700;
}

#infotext {
  color: #4a90e2;
  font-weight: 700;
  cursor: pointer;
}

.upload {
  background-color: #eef2fb;
  padding: 20px;
  border: 2px dashed #4a90e2;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  color: #4a90e2;
  font-weight: 700;
  font-size: 1rem;
  margin: 10px auto;
}

.upload input[type="file"] {
  opacity: 0; /* Invisível */
  cursor: pointer;
}

/* Rolagem */

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #f1f3fa;
}

body::-webkit-scrollbar-thumb {
  background-color: #e23636;
  border-radius: 5px;
  border: 2px solid #f1f3fa;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #e63900;
}
