html, body, form, .root {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  background-color: #F6F8F9;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex: 1;
}

html {
  min-height: 100%;
}
@media (min-width: 600px) {
  .rootBg {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cardBg {
    min-width: 650px;
  }
  .colBg {
    display: flex;
    flex-direction: row;
  }
}
@media (max-width: 599px) {
  .rootSm {
    display: flex;
    align-items: center;
  }
  .cardSm {
    /* min-width: 650px; */
    flex-direction: row;
  }
  .colSm {
    flex-direction: column;
  }
  .colRevSm {
    flex-direction: column-reverse !important;
  }

}

.flex{
  display: flex;
}


.row {
  display: flex;
  flex-direction: row;
}

.card {
  padding: 32px;
  background: #FFFFFF;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2),
    0px 2px 2px rgba(0, 0, 0, 0.12),
    0px 0px 2px rgba(0, 0, 0, 0.14);
  border-radius: 2px;
}

.card-title {
  display: flex;
  justify-content: space-between;
}

.card-title .title {
  font-size: 24px;
  color: #373D41;
}

.card-title .logo {
  height: 27px;
  width: 172px;
}

.card-content {
  display: flex;
  flex-direction: column;
  margin-top: 65px;
  margin-bottom: 65px
}

.card-content.no-spacing {
  margin: 0;
}

.card-content input {
  border: 1px solid #D5D9DB;
  border-radius: 4px;
  font-size: 14px;
  padding: 15px;
  flex: 1;
}

.card-actions {
  display: flex;
  flex-direction: column;
}

.card-actions .button {
  align-self: flex-end;
}

.button {
  background: #3C9BB5;
  cursor: pointer;
  border-radius: 2px;
  outline: none;
  border: none;
  padding: 9px 24px;
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2),
    0px 3px 4px rgba(0, 0, 0, 0.12),
    0px 2px 4px rgba(0, 0, 0, 0.14);
}

.app {
  display: flex;
  flex: 1;
  margin-top: 32px;
  justify-content: space-between;
}

.app-logo {
  flex: 0.3;
  border-radius: 5px;
}

.img {
  /* width: 115px; */
  object-fit: contain;
  max-width: 112px;
  max-height: 112px;
  position: relative;
}

.app-labels {
  flex: 2;
  margin-left: 16px;
  display: flex;
  flex-direction: column;
}

.app-labels .tag {
  color: #8A8A8F;
  font-size: 16px;
  line-height: 24px;
}

.app-labels .name {
  color: #000;
  font-size: 22px;
  line-height: 36px;
}

.app-labels .date, .app-labels .version {
  color: #000;
  font-size: 16px;
  line-height: 24px;
}

.app-divider {
  border-right: #979797 solid 1px;
  border-bottom: #979797 solid 1px;
  margin-right: 20px;
  margin-left: 20px;
}

.app-button-container {
  /* padding-left: 45px; */
  /* padding: 20px 45px; */
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}

.app-button {
  padding: 20px;
}