:root {
  --accent:#1CC494;
  --border-blueColor:#1CC494;
  --grey-1:#ccc;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.topnav-borders {
  background: #fff;
  border-bottom: 1px solid #ddd;
  border-top: 4px solid var(--border-blueColor);
}

.topnav {
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  width: 100%;
  z-index: 100;
  position: relative;
}

.container-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 67px;
  color:#1CC494;
  font-size:1.5em;
}

.auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 550px;
  padding: 10px;
  margin-bottom: 60px;
}
.auth .auth-formTitle {
  font-size: 2em;
  padding-bottom: 0.5em;
  color: var(--accent);
  text-align: center;
  display: block;
  border-bottom: 1px solid var(--grey-1);
}
.auth .auth-details {
  display: none;
  flex: 1;
  background: var(--accent);
  height: auto;
  padding: 16px;
}
.auth .auth-details-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.auth .auth-details-content img {
  display: block;
  padding-bottom: 2em;
}
.auth .auth-details-text {
  color: #fff !important;
  font-size: 1.1em;
}
.auth .auth-form {
  flex: 1;
  background-color: #fff;
}
.auth .auth-title {
  display: block;
  text-align: center;
  padding: 1em;
  margin-bottom: 3em;
  font-size: 2em;
  color: #fff;
}

input.invalid {
  background-color: #ffdddd;
}

.tab {
  display: none;
}

.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

.step.finish {
  background-color: var(--accent);
}

@media screen and (min-width: 800px) {
  .auth {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0px;
    -webkit-box-shadow: 0 0 25px #ccc;
    box-shadow: 0 0 25px #ccc;
  }
  .auth .auth-details {
    display: block;
  }
}
