form {
  padding: 0 2vw 2vw 2vw;
}

input {
  font-size: 1vw;
  padding: 4px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}

.botaoAcao{
  align-items: center;
  background-color: var(--kAmbar);
  border-radius: 12px;
  box-shadow: transparent 0 0 0 3px, rgba(18, 18, 18, .1) 0 6px 20px;
  box-sizing: border-box;
  color: var(--kAbissal);
  cursor: pointer;
  display: block;
  flex: 1 1 auto;
  font-size: 1.5vw;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin: 1vh auto 0;
  outline: none;
  padding: 1vw 1.2vw;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .2s, -webkit-box-shadow .2s;
  white-space: nowrap;
  border: 0;
  user-select: none;
  -webkit-user-select: none;
}

.botaoRecibo {
	position: fixed;
	width: 11rem;
	height: 4rem;
	right: 5%;
	bottom: 3%;
	text-align: center;
	font-size: 1.3rem;
}

#forgot {
  font-size: 1vw;
  color: var(--kOceano);
  width: fit-content;
}

.tooltip {
  position: relative;
  background: var(--kAgua);
  padding: 0.8vh 1.3vh;
  margin: 5px;
  font-size: 15px;
  border-radius: 100%;
  color: #FFF;
  cursor: help;
}

.tooltip:after {
  position: absolute;
  content: '';
  opacity: 0;
  transition: all 0.4s ease;
}

.tooltip:after {
  content: attr(data-tooltip);
  background: var(--kAgua);
  width: 160px;
  font-size: 13px;
  font-weight: 300;
  top: -30px;
  left: 40px;
  padding: 10px;
  border-radius: 5px;
  letter-spacing: 1px;
  transform: translateY(20px);
}

.tooltip:active::after {
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes shake {
  0% {
    transform: rotate(2deg);
  }

  50% {
    transform: rotate(-3deg);
  }

  70% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

#anim:hover {
  animation: shake 500ms ease-in-out forwards;
}

.aviso-form {
  display: none;
  color: #bd3131;
  margin: 0vw 2vw;
  font-weight: 700;
}

select {
  padding: 0.5vw;
  font-size: 1vw;
}

div.custos {
  display: flex;
  justify-content: space-around;
}