*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{ 
    --verde1:#006d5b;
    --verde2:rgba(3, 44, 41, 0.815); 
    --hover: rgba(45, 189, 177, 0.815) ;  
}

.imgbg{
    width: 100%;
    position: fixed;
    margin-top: 5%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.login {
    width: 350px;
    max-width: 100%;
    height: auto;
    background-color: white;
    border: none;
    border-radius: 10%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: -5px 7px 10px rgba(107, 102, 102, 0.77);
    font-family: 'Raleway', sans-serif;
    color: var(--verde2);
    font-size: 1.0em;
    font-weight: bold;
    text-align: center;
    padding: 3% 1% 3%;
    position: fixed;
    z-index: 1;
}

.login a{
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    color: var(--verde2);
    font-size: 1.0em;
    font-weight: bold;
    text-align: center;
    padding-top: 5%;
}

strong{
    color: var(--hover);
}

.linha{
    width: 30%;
    border: 1px solid gray;
    margin-left: 35%;
    margin-top: 5%;
}

.user{
    width: 70%;
    border: none;
    padding-top: 2%;
    padding-left: 2%;
    font-family: 'Raleway', sans-serif;
    font-size: 1.0em;
    font-weight: bold;
    background-color: #FFFAFA;
    border-bottom: 1px solid #C0C0C0; 
    margin-top: 4%;
}

.user:hover{
    background-color: #F5F5DC;
}

.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;
}


