@import url('https://fonts.googleapis.com/css?family=Muli');

* {
  /*-webkit-touch-callout: none;
  -webkit-user-select: none; *//* Disable selection/copy in UIWebView */
}

body {
  font-family: 'Muli', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  font-style: normal;
  color: #4a4a4a;
  background-color: #f1f2f3;
  -webkit-font-smoothing: antialiased;
}

div {
  border-radius: 5px;
  padding-bottom: 10px;
}

div:last-child {
  padding-bottom: 5px;
}

#container {
  width: 100%;
  height: 100%;
}

.wrapper {
  padding: 0px;
}

.login {
  margin-top: 5%;
}

.card {
  margin: auto;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 5px;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-panel {
  display: auto;
  border-radius: 5px;
  background-color: #ffffff;
  border: solid 1px #eaeaea;
  padding: 20px;
}

.description {
  font-size: 16px;
  text-align: center;
}

/* Button */

.btn {
  border-radius: 5px;
  outline: 0 !important;
}

.btn-group-lg>.btn, .btn-lg {
  padding: 10px 16px;
  font-size: 16px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.btn-primary {
  color: #fff !important;
  background-color: #59508e;
  border-color: #59508e;
  font-weight: normal;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: #fff !important;
  background-color: #484073;
  border-color: #484073;
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none;
}

.btn-secondary {
  color: #4a4a4a !important;
  background-color: #f1f2f3;
  border-color: #f1f2f3;
  font-weight: normal;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.open .dropdown-toggle.btn-secondary {
  color: #fff !important;
  background-color: #ccc;
  border-color: #ccc;
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none;
}

.btn-link {
  color: #4a4a4a;
}

.btn-link:hover {
  color: #59508e;
}

/* Form Control */

.form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #59508e;
  outline: 0;
}

.form-control[disabled], 
.form-control[readonly], 
fieldset[disabled] .form-control {
    background-color: #f8f8f8;
    opacity: 1;
}

.form-control-plaintext {
  background-color: #f8f8f8;
  padding: 0 15px;
}

input[type=text], input[type=password], select {
  width: 100%;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #f1f2f3;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 16px;
  background-color: #f1f2f3;
  height: 40px;
}

.logo {
  margin-bottom: 30px;
}

/* Flexbox */

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

.ml-auto {
  display: flex;
  align-self: center;
  margin-right: auto;
  margin-left: 10px;
}

#customCheckBox {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background-color: #f1f2f3;
}

/* Error */

.has-error .form-control {
    border-color: #e3263d;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.has-error .form-control:focus {
    border-color: #e3263d;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.has-error .checkbox, 
.has-error .checkbox-inline, 
.has-error .control-label, 
.has-error .help-block, 
.has-error .radio, 
.has-error .radio-inline, 
.has-error.checkbox label, 
.has-error.checkbox-inline label, 
.has-error.radio label, 
.has-error.radio-inline label {
    color: #e3263d;
}

/* Typography */

h2 {
  font-size: 28px;
  font-weight: 700; 
  color: #4a4a4a;
}

h4 {
  font-size: 16px;
  font-weight: bold;
  color: #4a4a4a;
}

p {
  font-size: 14px;
  font-weight: 500;
}

/* Margin */

.mt-10 {
  margin-top: 10px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-10 {
  margin-bottom: 10px;
}

/* Navbar */

.navbar-inverse {
  color: #ffffff;
  background-color: #59508E;
  border-color: #59508E;
}

footer {
  margin: 20px 0;
}

.copyright {
  text-align: center;
}

/* Responsive */

@media only screen and (max-width: 600px) {
  nav {
    visibility: hidden;
  }

  h2 {
    font-size: 26px;
  }

  footer {
    margin: 20px;
  }

  .mt-60 {
    margin-top: 0;
  }
}

