.problem-report-dialog md-dialog-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  /*justify-content: center;*/
  /*align-items: center;*/
  width: 100%;
  box-sizing: border-box;
}

.problem-report-dialog md-dialog-content .problem-report-text, .problem-report-dialog md-dialog-content .problem-report-data {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.problem-report-dialog md-dialog-content md-input-container {
  width: 100%;
  box-sizing: border-box;
}


.captcha-wrapper {
  max-width: fit-content;
  display: flex;
  flex-direction: column;
}

.captcha-image {
  max-width:200px;
}

.captcha-input-container {
  display: flex;
}
.captcha-input-wrapper {
  flex-direction: column-reverse;
  width: 150px;
}

.captcha-input {
  display: flex;
}

.captcha-refresh {
  height: 60px;
  min-width: 0px;
}

.captcha-error {
  color: rgb(221,44,0);
}

.captcha-spinning-icon {
  animation: spin-animation 1.5s infinite;
  display: inline-block;
}

@keyframes spin-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}