form{
    background-color: white;
padding:1rem;
max-width:500px;margin: 1rem auto;
-webkit-box-shadow: 0px 0px 24px -1px rgba(0,0,0,0.62); 
box-shadow: 0px 0px 24px -1px rgba(0,0,0,0.62);


  

header{
        margin-bottom:1rem;
    }
    label, input{
        display:block;
    }

    input{
        padding: 5px;
        margin-bottom: .75rem;
        width:100%;
        border:1px solid var(--color-dark);
    }

    textarea{
        width:100%;
        height:200px ;
    }
}
.signup-form{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.progress-bar {
  width: 100%;
  background-color: var(--color-background);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.progress-fill{
  height: 20px;
  background-color: var(--color-main);
  width: 0%;
  transition: width 0.3s ease-in-out;}