*{
    margin: 0;
    padding: 0;
}

:root{ 
    --verde1:#006d5b;
    --verde2:rgba(3, 44, 41, 0.815); 
    --hover: rgba(45, 189, 177, 0.815) ;  
}

section{
    height: 60%;
    width: auto;
    padding-top: 10vh;
    padding-bottom: 10vh
}

.cadastro {
    height: 650px auto;
    width: 900px;
    border: none;
    border-radius: 30px;
    box-shadow: -5px 7px 10px rgba(107, 102, 102, 0.77);
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 1.0em;
    color: var(--verde1);
    padding-top: 5%;
    padding-bottom: 5%;
    margin: 0 auto; /* Centraliza horizontalmente */
    margin-top: 2%; /* Ajuste a margem superior */
    margin-bottom: 2%;
  }
  
  @media only screen and (max-width: 768px) {
    .cadastro {
      width: 90%; /* Ajusta a largura para ocupar 90% da largura da tela */
      margin: 0 auto; /* Centraliza horizontalmente */
    }
  }
  

  .confirmacao {
    height: 650px auto;
    width: 900px;
    border: none;
    border-radius: 30px;
    box-shadow: -5px 7px 10px rgba(107, 102, 102, 0.77);
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 1.0em;
    color: var(--verde1);
    padding-top: 5%;
    padding-bottom: 5%;
    margin: 0 auto; /* Centraliza horizontalmente */
    margin-top: 2%; /* Ajuste a margem superior */
    margin-bottom: 2%;
  }
  
  @media only screen and (max-width: 768px) {
    .confirmacao {
      width: 90%; /* Ajusta a largura para ocupar 90% da largura da tela */
      margin: 0 auto; /* Centraliza horizontalmente */
    }
  }
  

section .link {
    font-family: 'Raleway', sans-serif;
    font-size: 1.0em;
    font-weight: bold;
    color: var(--verde1);
    text-decoration: none;
}

h2{
    clear: both;
    color: var(--hover);
}

h3{
    text-align: left;
    margin-left: 10%;
    margin-top:1%;
}

.dados{
    width: 80%;
    border: none;
    padding-top: 1%;
    padding-left:1%;
    margin-bottom: 1%;
    font-family: 'Raleway', sans-serif;
    font-size: 1.0em;
    font-weight: bold;
    background-color: #FFFAFA;
    border-bottom: 1px solid #C0C0C0; 
}

.dados:hover{
    background-color: #F5F5DC;
}


.cep{
    width:40%;
    border: none;
    padding-top: 1%;
    padding-left:1%;
    margin-bottom: 1%;
    font-family: 'Raleway', sans-serif;
    font-size: 1.0em;
    font-weight: bold;
    background-color: #FFFAFA;
    border-bottom: 1px solid #C0C0C0;
    float:left;
    margin-left: 10%;
}
.cep:hover{
  background-color: #F5F5DC;
}

.btncep{
  width: 30%;
  background-color: transparent; 
  border: 1px solid #ccc; 
  color: #333; 
  padding: 3px 16px; 
  border-radius: 8px; 
  text-align: center; 
  text-decoration: none; 
  display: inline-block; 
  font-family: 'Raleway', sans-serif;
  font-size: 1.0em;
  cursor: pointer;
}
.btncep:hover{
  background-color: #f2f2f2;
}


.button {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding-right: 40px;
  
  &:hover {
    & .button__border-circle { 
      transform: translateX(60px);
    }
    
    & .button__mask-circle {
      clip-path: circle(25px at 85px);
    }
  }
}

.button__text {
  z-index: 1;
  font-family: 'Raleway', sans-serif;
  font-size: 1.0em;
  font-weight: bold;
  margin-right: -18px;
  letter-spacing: 0.05em;
}

.button__wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.button__arrow {
  left: 35px;
  height: 3px;
  width: 50px;
  display: flex;
  position: absolute;
  align-items: center;
  background-color: var(--hover);
  
  &:after {
    content: '';
    width: 0; 
    height: 0; 
    top: -5px;
    right: -7px;
    position: absolute;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid var(--hover);
  }
}

.button__border-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #BFBFBF;
  transition: transform 987ms;
}

.button__mask-circle {
  width: 50px;
  height: 50px;
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(25px);
  transition: clip-path 987ms;
}

.button__small-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateX(60px);
  background-color: var(--hover);
}

.btn{
  opacity: 0;
  border: none;
}



