* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  line-height: 20px;
  font-size: 14px;
  color: #554f45;
  font-family: RobotoLight, "Helvetica Neue", Helvetica, vedana, sans-serif;
}

h1 {
  font-family: RobotoLight, sans-serif;
  color: #554f45;
  font-size: 1.5em;
}

hr {
  border-style: solid;
  border-width: 1px;
  border-color: gray;
}

.error-input-border{
    border-color: 'red'
}

.form{
  align-self: center;
  background-color: #ecede4;
  padding: 15px;
  border: 1px solid #ddd;
}

.side-form-info{
  flex: 1;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 10px;
}


input[type="text"], input[type="password"], input[type="email"] {
  border: 1px solid #dadada;
  border-radius: 0.146em;
  box-sizing: border-box;
  line-height: 1.618em;
  color: #777;
  font-size: 14px;
  min-height: 38px;
  min-width: 125px;
  flex: 1;
  margin-right: 6px;
  margin-top: 0;
  outline: 0 none;
  padding: 0 3px 3px 14px;
  margin-bottom: 12px;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus {
  border: 0 solid rgba(81, 203, 238, 1);
  box-shadow: 0 0 5px rgba(81, 203, 238, 1);
}
input[type="submit"] {
  background-color: #f47621;
  border: 0 none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Roboto,sans-serif;
  font-size: 21px;
  line-height: 46px;
  margin-bottom: 13px;
  padding: 0;
  text-transform: uppercase;
  transition: color 0.3s ease-out 0s, background-color 0.3s ease-out 0s, opacity 0.3s ease-out 0s;
  width: 100%;
}
input[type="submit"]:hover {
  background-color: #d66a00;
}

.button {
    background-color: #f47621;
    border: 0 none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Roboto,sans-serif;
    font-size: 18px;
    line-height: 46px;
    margin-bottom: 13px;
    padding: 0;
    text-transform: uppercase;
    transition: color 0.3s ease-out 0s, background-color 0.3s ease-out 0s, opacity 0.3s ease-out 0s;
    width: 100%;
}

@font-face {
    font-family: 'RobotoLight';
    src: url('fonts/Roboto-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'RobotoBold';
    src: url('fonts/Roboto-Bold.ttf') format('truetype');
}

.layout {
  display: flex;
  flex-direction: column;
}

.layout-wrapper{
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 100vh;
  flex-basis: 100%;

}

.layout-body {
  display: flex;
  flex: 1;
}
.layout-nav {
  order: -1;
}

.layout-content {
  flex: 1;
  padding: 10px;
  transition: all 0.4s ease-in-out 0s;
  flex-basis: 100%;
  width: 100%;
  flex-direction: column;
}

.layout-header{
  background-color: #ecede4;
  border-bottom: 1px solid orange;
  min-height: 50px;
  max-height: 75px;
  padding: 10px;
}

.layout-footer{
  background-color: #f1f2f4;
  min-height: 30px;
  padding: 10px;
}

.validation-text{
  color: red;
  font-size: 1.0em;
  margin-bottom: 15px;
}

.validation-border{
  border-color: red;
}

@media (min-width: 768px) {
  .layout-body {
    flex-direction: row;
    flex: 1;
  }
  .layout-content {
    flex: 1;
    padding: 10px;
  }
  .layout-nav, .layout-ads {
     /* 12em is the width of the columns  */
    flex: 0 0 12em;
  }
}

.hide-on-small {
  display: inherit;
}

@media (max-width: 768px) {
  .hide-on-small {
      display: none;
  }

  .form{
    align-self: center;
  }

  .form-container {
    min-width: 85% !important;
  }
}

.show-on-small {
  display: inherit;
}

.form-container {
  flex: 1;
  align-self: center;
  min-width: 500px;
}

@media (min-width: 768px) {
  .show-on-small {
      display: none;
  }
}

.welcome-back{
  margin: 15px 0px;
}

.Select {
  /* border: 1px solid #dadada; */
  /* border-radius: 0.146em; */
  box-sizing: border-box;
  line-height: 1.618em;
  color: #777;
  font-size: 14px;
  height: 38px;
  margin-right: 6px;
  margin-top: 0;
  outline: 0 none;
  /* padding: 0 3px 3px 14px; */
  transition: all 0.3s ease-in-out 0s;
  flex: 1;
  margin-bottom: 12px;
  height: auto;
}

.Select-control{
  border-radius: 0.146em;
}

.tooltip-text{
  text-align: center;
  border: 1px solid #554f45;
  border-radius: 10px;
  width: 30%;
  word-wrap: wrap;
}

.tool-tip{
  width: 12px;
  height: 12px;
  text-align: center;
  background-color: #554f45;
  border-radius: 50%;
  color: white;
  font-size: 9px;
  line-height: 15px;
  margin-right: -12px;
}