/* $base-background: #00CC99; */
body {
  color: rgba(0, 0, 0, 0.6);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.6em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.btn {
  border-radius: 2px;
  padding: 8px 12px;
  color: #195B85;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.card{
  background: rgba(255, 255, 255,1);
  min-width: 300px;
  width: 100%;
  margin: 0px auto;
  border-radius: 15px;
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); */
  box-sizing: border-box;
  padding: 48px;
  text-align: center;
  min-height: 580px;
  /* max-height: 500px; */
  position: relative;
}

.formulario-accesso{
	display: inline-block;
	vertical-align: top;
	width: 30%;
	height: auto;
	min-height: 580px;
	background-color:rgba(255,255,255,1);
	border-radius: 15px;
	margin: 0 auto;
	margin-top: 50px;
	margin-left: 3.33%;
	margin-right: 3.33%;
	float: left;
}

.products {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.product {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.product.active {
  opacity: 1;
  visibility: visible;
}

.thumbnail {
  margin: 0 0 0px;
}

.thumbnail img {
  width: 100px;
  height: 100px;
  margin-top: 0px;
  padding: 0px;
  /* background-color: red; */
}



.title {
  margin: 0 0 12px;
  color: #195B85;
  font-size: 24px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  font-family: "Bold";
}

.description {
  margin: 0 0 28px;
  font-family: "Ligth";
  text-align: center;
  font-size: 20px;
  color: #333;
}

.separdor{

  width: 80%;
  display: block;
  margin: 0 auto;
  margin-top: 0px;
  margin-bottom: 10px;
  height: 2px;
  border-radius: 1px;
  background-color: #ddd;

}

.boton-iniciar{
    display: block;
    margin: 0 auto;
    width: 150px;
    height: 35px;
    border-radius: 25px;
    background-color: #195B85;
    color: #fff;
    cursor: pointer;
    padding-top: 10px;
    font-size: 20px;
    display: none;
    font-family: "Regular";
}

.boton-iniciar:hover{
  transition: .3s;
  background-color: #335ee2;
}

.footer {
  display: flex;
  justify-content: space-between;
  margin: 0 -12px -12px;
  font-family: "Bold";
  /* background-color: red; */
}

[ripple] {
  z-index: 1;
  position: relative;
  overflow: hidden;
}
[ripple] .ripple {
  position: absolute;
  background: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-animation: ripple 2s;
          animation: ripple 2s;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scale(20);
            transform: scale(20);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scale(20);
            transform: scale(20);
    opacity: 0;
  }
}

@media only screen and (max-width: 720px) {
  .card{
    width: 98%;
    margin-top: 10px;
  }
  .formulario-accesso{
    width: 95%;
    margin-top: 30px;
    margin-bottom: 120px;
    padding-bottom: 30px;
    position: relative;
    z-index: 11;
    /* display: none; */
  }

  .description {
    margin: 0 0 18px;
    font-family: "Regular";
    text-align: center;
    font-size: 20px;
    color: #333;
    line-height: 1.3;
  }
  .btn {
    border-radius: 2px;
    padding: 8px 12px;
    color: #195B85;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    margin-top: 30px;
  }
  .boton-iniciar{
      display: none;
      margin-bottom: 20px;
  }
}
