/* Font Import from google */
@import url("https://fonts.googleapis.com/css?family=Roboto");
.container-fluid {
  display: -ms-grid;
  display: grid;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-family: 'Roboto', sans-serif;
}

.container-fluid .main-body {
  width: 350px;
  height: auto;
  border: solid 2px #92ccdc;
  display: -ms-grid;
  display: grid;
}

.container-fluid .main-body .card {
  border-radius: 0px;
  background: #f2f2f2;
}

.container-fluid .main-body .card .card-header {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  background: transparent;
  border: none;
}

.container-fluid .main-body .card .card-body .form-inline .form-group {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  margin: 5px;
}

.container-fluid .main-body .card .card-body .form-inline .form-group label {
  margin: auto 10px;
}

.container-fluid .main-body .card .card-body .form-inline .form-group input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.container-fluid .main-body .card .card-body .form-inline .form-group .form-control {
  border-radius: 0px;
}

.container-fluid .main-body .card .card-body .form-inline .btn-danger {
  background: -webkit-gradient(linear, left top, left bottom, from(#34b2d2), to(#2a89ad));
  background: linear-gradient(#34b2d2, #2a89ad);
  border-radius: 0px;
  border: none;
  margin: 10px auto;
}

.container-fluid .main-body .card .card-body .btn-danger {
  background: -webkit-gradient(linear, left top, left bottom, from(#34b2d2), to(#2a89ad));
  background: linear-gradient(#34b2d2, #2a89ad);
  border-radius: 0px;
  border: none;
  margin: 10px auto;
}

.container-fluid .main-body .card .card-body .btn-danger:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.container-fluid .main-body .card .card-body .collapse {
  padding: 10px;
}

.container-fluid .main-body .card .card-body .collapse .form-group {
  height: 50px;
}
/*# sourceMappingURL=main.css.map */