:root {
  --mag-blue-color: #202f55;
  --mag-blue-dark-color: #182446;
  --mag-green-color: #080;
  --mag-green-dark-color: #060;
  --mag-grey-color: #6F5E6A;
  --mag-grey-dark-color: #534750;
  --mag-red-color: #a00;
  --mag-red-dark-color: #800;
  --bg-grey-color: #eee;
  --menu-speed: 0.75s;
  --input-padding-x: .75rem;
  --input-padding-y: .75rem;
}

html,
body {
  height: 100%;
}

body {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #e5e5e5;
}

.form-signin {
  width: 100%;
  max-width: 420px;
  padding: 15px;
  margin: 0 auto;
}

.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group > input,
.form-label-group > label {
  padding: var(--input-padding-y) var(--input-padding-x);
}

.form-label-group > label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0; /* Override default `<label>` margin */
  line-height: .75;
  color: #495057;
  border: 1px solid transparent;
  border-radius: .25rem;
  transition: all .1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder {
  color: transparent;
}

.form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
  padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group input:not(:placeholder-shown) ~ label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 11px;
  color: #777;
}  
  
/*** Magnolia Buttons ***/

 /** Magnolia Blue **/
 .btn-magblue{
  color:#fff;
  background-color:#202f55;
  border-color:#182446;
  }
  
.btn-magblue:hover{
  color:#fff;
  background-color:#101f35;
  border-color:#202f55;
  }
  
.btn-magblue.focus, .btn-magblue:focus {
  box-shadow:0 0 0 .2rem rgba(32,47,85,.5)
  }
  
.btn-magblue.disabled, .btn-magblue:disabled{
  color:#fff;
  background-color:#007bff;
  border-color:#007bff
  }
  
.btn-magblue:not(:disabled):not(.disabled).active, .btn-magblue:not(:disabled):not(.disabled):active, .show>.btn-magblue.dropdown-toggle{
  color:#fff;
  background-color:#0062cc;
  border-color:#005cbf;
  }
  
.btn-magblue:not(:disabled):not(.disabled).active:focus, .btn-magblue:not(:disabled):not(.disabled):active:focus, .show>.btn-magblue .dropdown-toggle:focus {
  box-shadow:0 0 0 .2rem rgba(0,123,255,.5)
  }

/** Magnolia Green **/
.btn-maggreen{
  color:#fff;
  background-color:#080;
  border-color:#060;
  }
    
.btn-maggreen:hover{
  color:#fff;
  background-color:#060;
  border-color:#080;
  }
    
.btn-maggreen.focus, .btn-maggreen:focus {
  box-shadow:0 0 0 .2rem rgba(0,128,0,.5)
  }
    
.btn-maggreen.disabled, .btn-maggreen:disabled{
  color:#fff;
  background-color:#007bff;
  border-color:#007bff
  }
    
.btn-maggreen:not(:disabled):not(.disabled).active, .btn-maggreen:not(:disabled):not(.disabled):active, .show>.btn-maggreen.dropdown-toggle{
  color:#fff;
  background-color:#0062cc;
  border-color:#005cbf;
  }
    
.btn-maggreen:not(:disabled):not(.disabled).active:focus, .btn-maggreen:not(:disabled):not(.disabled):active:focus, .show>.btn-maggreen .dropdown-toggle:focus {
  box-shadow:0 0 0 .2rem rgba(0,123,255,.5)
  }

/** Neutral Grey **/
.btn-neutral{
  color:#fff;
  background-color:#6F5E6A;
  border-color:#534750;
  }
    
.btn-neutral:hover{
  color:#fff;
  background-color:#534750;
  border-color:#6F5E6A;
  }
    
.btn-neutral.focus, .btn-neutral:focus {
  box-shadow:0 0 0 .2rem rgba(111,94,106,.5)
  }
    
.btn-neutral.disabled, .btn-neutral:disabled{
  color:#fff;
  background-color:#007bff;
  border-color:#007bff
  }
    
.btn-neutral:not(:disabled):not(.disabled).active, .btn-neutral:not(:disabled):not(.disabled):active, .show>.btn-neutral.dropdown-toggle{
  color:#fff;
  background-color:#0062cc;
  border-color:#005cbf;
  }

.btn-neutral:not(:disabled):not(.disabled).active:focus, .btn-neutral:not(:disabled):not(.disabled):active:focus, .show>.btn-neutral .dropdown-toggle:focus {
  box-shadow:0 0 0 .2rem rgba(0,123,255,.5)
  }
