@import url(/frontend/global.css);
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: white;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.container_inputs {
  position: relative;
  display: flex;
  flex-direction: column;
}

h1 {
  font-size: 30px;
  padding: 5px 0px 10px 0px;
  font-weight: 700;
  color: #00295b;
}

.form-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin: 4px;
  width: 100%;
}

.form-label input {
  width: 95%;
  height: 16px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}

.form-label span {
  font-size: 16px;
  font-weight: 500;
}

.botao {
  background-color: #00295b;
  color: #f3f3f3;
  padding: 8px 0px;
  margin: 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.1s;
  width: 90%;
}

.botao:hover {
  transform: scale(1.05);
}

.botao:active {
  transform: scale(1);
}

.botao.clicado {
  transform: scale(0.95);
}

#resultado {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0px 10px 0px;
  font-size: 16px;
  gap: 5px;
}

#resultado p {
  margin: 0px;
  text-align: center;
}
