body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background-color: #f9f9f9;
}
.title-component {
  margin-left: 30px;
  margin-top: 70px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 58px;
  text-align: left;
  position: relative;
}
.section-title {
  font-size: 38px;
}
.login-button {
  width: 215px;
  height: 56px;
  border: 1px solid #3a50b3;
  border-radius: 50px;
  font-size: 18px;
  background-color: Transparent;
  margin-top: 20px;
}
.login-button:hover {
  background-color: #3a50b3;
  color: white;
  cursor: pointer;
}
.login-button:disabled {
  background: lighten(#3a50b3);
  cursor: not-allowed;
}

.input-error {
  border: 1px solid red;
}

.brand-logo {
  max-width: 80px;
  display: inline-block;
  height: 100%;
  left: 15px;
}
.small-text {
  text-align: left;
  font-weight: 500;
  font-size: 12px;

  text-transform: lowercase;
  margin-left: 65px;
}
.editType {
  margin-top: -10px;
  margin-left: 60px;
  margin-right: 60px;
  border: 1px solid #3a50b3;
  box-sizing: border-box;
  border-radius: 10px;
}

.bold-text {
  /* all the principle text */
  color: #3a50b3;
  font-family: "Blinker", sans-serif;
}

.page-footer {
  margin-top: 70px;
}

.error-message {
  margin-bottom: 12px;
  font-size: 12px;
  padding: 10px 16px;
  color: #a94442;
  background: #f3dede;
  border-radius: 4px;
  width: 80%;
  margin-left: 60px;
  margin-right: 60px;
}

/* Spinner  */
.lds-ring-container {
  position: absolute;
  right:75%;
}

.lds-dual-ring {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid green;
  border-color: green transparent green transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

main {
  flex: 1 0 auto;
}
