@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

html {
    scroll-behavior: smooth;
    height: 100%;
  }
*{
    font-family: "Lexend Deca", sans-serif; 
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
}
body{
    padding: 0;
    margin: 0;
    font-family: "Lexend Deca", sans-serif;
    background-color: #fff;
    max-width: 1920px;
    min-height: 100vh;
    overflow-x: hidden;
   display: flex;
   flex-direction: column;
    & a{
text-decoration: none;
&:hover{
    text-decoration: none;
}
    }
    & li{
        list-style: none;
    }
    & ul{
        padding-left: 0;
    }
    & input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 30px  #f4f7f7 inset !important;
    }
}
footer{
    margin-top: auto;
}
.required::after{
    content: " *";
    color: #C30000;
}

.text-danger{
    color: #C30000;
}

.success-message { 
    color: green; 
  }

  .btn--goUp{
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 5rem;
    & img{
      filter: drop-shadow(0px 2px 5px #000000);
    }
  }
  
@media screen and (max-width: 700px) {
    html{
        scrollbar-width: none;
        overflow-y: scroll;
    }
    body {
        padding-inline: .2rem;
    }
    .btn--goUp{
        right: 2rem;
      }
}