html, body {
  height: 100%;
  width: 100%;
  margin: 0px;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.signupForm {
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 30px 0px 30px 0px;
  gap: 30px
}
.app-title {
  width: 100%;
  text-align: center;
  margin: 30px 0px 0px 0px;
}
.app-title p {
  font-weight: bold;
  font-size: 24px;
  margin: 0px;
}
.account-info-wrapper {
  display: flex;
  width: fit-content;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid gray;
  width: 65%;
  max-width: 500px;
}
.account-title-wrapper {
  position: relative;
  width: 100%;
  background-color: black;
  margin-bottom: 30px;
}
.siteTitle {
  width: 100%;
  color: white;
  font-weight: bold;
  font-size: 20px;
  padding-left: 20px;
}
.imgLogo{
  width: 110px;
  height: 110px;
}
.btn-login{
  margin-top:10px; 
  padding: 17px 50px;
  background-color: black;
  color: white;
  border-width: 0px;
  border-radius: 3px;
  width: 100%;
  max-width: 500px;
  font-weight: bold;
  font-size: 15px;
  box-shadow: 1px 1px 5px black;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.divForm{
  margin: 30px 0px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: start;
  gap: 10px;
  width: 100%;
}
.inputWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.labelBox {
  width: 90%;
  max-width: 500px;
  font-weight: bold;
}
.submit-button-wrapper{
  display: flex;
  flex-direction: column;
  align-items:center;
  gap: 5px;
  width: 100%;
}
.inputBox{
  padding: 7px;
  width: 90%;
  max-width: 500px;
}
.subsciption-wrapper {
  display: flex;
  width: fit-content;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.subscriptionForm {
  display: flex;
  width: fit-content;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid gray;
  width: fit-content;
  max-width: 500px;
}
.plan-input-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  margin-bottom: 30px;
}
.plan-type-button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.plan-type-button-wrapper button {
  width: 100%;
  background-color: gray;
  border: unset;
  border-radius: 3px;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
}
.plan-name-selector {
  width: 100%;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
}
.card-input {
  min-width: 350px;
  margin: 10px 0px 10px 0px;
}
.price-wrapper {
  width: 100%;
  text-align: end;
}
.plan-price {
  padding-right: 10px;
  font-size: 16px;
  margin: 0px 0px 20px 0px;
}
.subscriptionLabelBox {
  width: 100%;
  font-weight: bold;
  margin-bottom: 5px;
}
.commercial-law-wrapper {
  margin-top: 7px;
}
.commercial-law-wrapper a {
  font-size: 13px;
}

.loader {
  width: 20px;
  height: 20px;
  border: 3px solid #BABABA;
  border-bottom-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.grecaptcha-badge { 
  visibility: hidden !important;
}

@keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
} 




@media screen and (max-width: 767px) {
  .signupForm {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  .account-info-wrapper, .subsciption-wrapper {
    width: 90%;
    max-width: unset;
  }
  .subscriptionForm, .btn-login {
    width: 100%;
    max-width: unset;
  }
  .plan-input-wrapper {
    width: 90%;
    max-width: 500px;
  }
  .siteTitle {
    font-size: 17px;
  }
}