* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial;
}
.container {
  position: fixed;
  top: 0px;
  left: 0px;
  overflow: hidden;
  background-color: #f2f2f2;
  height: 100vh;
  padding: 20px;
  display: flex;
  justify-content: center;
  position: relative;
  background-image: linear-gradient(
      to left,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url("../img/bot.png");
}

@media (max-width: 768px) {
  .container {
    padding: 0px;
  }
}

.container-input {
  overflow: auto;
  padding: 10px;
  transform: scale(0);
  width: 900px;
  border-radius: 10px;
  box-shadow: 0px 0px 5px gray;
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
  background: #0057ff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  animation-name: form;
  animation-duration: 0.0s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@media (max-width: 768px) {
  .container-input {
    flex-grow: 1;
    border-radius: 0px;
  }
}

@media (max-width: 400px) {
  .container-input {
    justify-content: flex-start;
    flex-grow: 1;
    border-radius: 0px;
  }
}

@keyframes form {
  100% {
    transform: scale(1);
  }
}

.nivel {
  display: flex;
  width: 100%;
  align-items: center;
  column-gap: 10px;
  justify-content: center;
}
.nivel span {
  flex-grow: 1;
  background-color: #fff;
  height: 3px;
  max-width: 80px;
}
.nivel a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
}
h3 {
  color: #fff;
  text-align: center;
}
.teste-gratis {
color: #7ed957;
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 20px;
  text-align: center;
font-family: initial;
margin: 6%;
}
.teste-gratis div {
  background-color: #fff;
  width: 100px;
  height: 1px;
}
.teste-gratis p {
  color: #fff;
  text-align: center;
}
.container-input label {
  background-color: #e8f0fe;
  border: solid 1px rgb(238, 230, 230);
  width: 100%;
  max-width: 450px;
  height: 40px;
  min-height: 40px;
  display: flex;
  padding: 10px;
  align-items: center;
  border-radius: 5px;
  column-gap: 5px;
}
.container-input label input {
  outline: none;
  border: none;
  background-color: #e8f0fe;
  width: 100%;
}

a,
.btn-cadastrar {
  background: #7ed957;
  width: 100%;
  max-width: 450px;
  height: 40px;
  min-height: 40px;
  border: none;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 1s;
  display: flex;
  justify-content: center;
  align-items: center;
}
a:hover {
  opacity: 0.8;
}

.btn-voltar {
  background: orange;
}

.btn-voltar:hover {
  opacity: 0.8;
}

/* .btn-cadastrar {
  background: linear-gradient(
    0deg,
    rgba(18, 111, 36, 1) 0%,
    rgba(39, 170, 37, 1) 100%
  );
} */

.btn-cadastrar:hover {
  opacity: 0.8;
}

table {
  width: 100%;
  max-width: 450px;
}
tbody tr td {
  border: none;
  border-bottom: 1px solid #e8f0fe;
  padding: 10px;
  color: #fff;
}

.validate {
  background-color: rgb(153, 17, 17);
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 30px;
  border-radius: 5px;
  color: #fff;
  opacity: 0;
  transition: 0.5s;
  width: 100%;
  max-width: 450px;
}
@media (max-width: 768px) {
  .validate {
    border-radius: 0px;
    top: 0%;
    width: 100%;
  }
}

.displayNone{
    display: none;
}

.error{
    color: orangered;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:5px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	/*margin-top:16px;*/
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .box div {
    width: 100px;
    height: 100px;
  }
.textwhite{
    color: white;
}
.logo1 {
    width: 30%;
    height: auto;
    display: block;
  }


  .blocks {
    display: flex;
    flex-flow: row wrap;
}

.block {
    flex: 1 1 calc(50% - 1rem);
    margin-bottom: 1rem;
    margin-right: 1rem;
    padding: 1rem 1rem 3rem;
    position: relative;

    .block:nth-child(even) {
        margin-right: 0;
    }

    @media screen and (min-width: 60em) {
        flex: 1 1 calc(25% - 1rem);
        overflow: hidden;

        &:nth-child(even) {
            margin-right: 1rem;
        }

        &:nth-child(4n) {
            margin-right: 0;
        }

    }
}

/* Boring non-layout styling */

html {
   box-sizing: border-box;
}

*, *::before, *::after {
   box-sizing: inherit;
}

body {
    background-color: #ccc;
    margin: 1rem;
}

.block {
    background: #fff;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;

}

/* ajustes 1 - carrossel */

.container-carrossel {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  /* box-shadow: 0px 0px 5px gray; */
  max-width: 450px;
}
.container-carrossel #img .area-img {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.container-carrossel #img .area-img img {
  width: 100%;
  transform: scale(0);
  height: 100%;
  border-radius: 10px;
  animation-name: img;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes img {
  100% {
    transform: scale(1);
  }
}

.area-footer {
  display: flex;
  column-gap: 20px;
  align-items: center;
  padding: 10px 0px;
}

.area-footer .btn {
  column-gap: 10px;
  display: flex;
}
.area-footer .btn .btn-footer {
  background-color: transparent;
  border: solid 0.5px gray;
  border-radius: 50%;
  padding: 10px;
  color: gray;
  width: 40px;
}

