.envelo-login-wrapper{
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.envelo-registration-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 92px;
  gap: 16px;
  opacity: 0px;
}

.envelo-registration-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  text-align: center;
  margin: 0;
}

.forgot-password-text > a {
    text-decoration: none;
}

  .login-form-container{
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .login-btn {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1px;
    text-align: center;
  }
  

.progress-bar {
  display: flex;
  align-self: center;
  height: 44px;
  justify-content: center;
}
.green-bar {
  margin-top: 15px;
  margin-right: 5px;
  width: 169px;
  height: 16px;
  border-radius: 16px 2px 2px 16px;
  background-color: var(--secondary);
}
.grey-bar {
  width: 169px;
  margin-top: 15px;
  height: 16px;
  margin-left: 5px;
  border-radius: 2px 16px 16px 2px;
  background-color: var(--md-sys-color-outline);
}
.green-line {
  width: 4px;
  height: 44px;
  border-radius: 20px;
  background-color: var(--secondary);
}

.container-large {
  padding: 20px 10px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
	background-color: var(--surface-container);
	border-radius: 28px;
  border: 1px solid var(--surface-container-highest);
  justify-content: center;
  align-items: center;
}

.form-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.container-form {
  gap: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 786px) {
  .envelo-registration-wrapper {
    width: 420px;
  }

  .login-form-container {
    width: 80%;
  }

  .container-large {
    padding: 40px 20px;
    width: 600px;
  }
}

@media (max-width: 500px) {
  .green-bar {
    margin-top: 15px;
    margin-right: 5px;
    width: 80px;
    height: 16px;
    border-radius: 16px 2px 2px 16px;
    background-color: var(--secondary);
  }
  .grey-bar {
    width: 80px;
    margin-top: 15px;
    height: 16px;
    margin-left: 5px;
    border-radius: 2px 16px 16px 2px;
    background-color: #acacac;
  }
}
