@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600);* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.btn-base {
  color: #fff;
  background-color: #5d6a71;
  border-color: #5d6a71;
}

.btn-base:hover {
  color: #fff;
  background-color: #49555c;
  border-color: #49555c;
}

html,
body {
  height: 100%;
}

body {
  background-color: #f5f5f5;
  color: #5d6a71;
}

.auth__form {
  width: 100%;
  max-width: 350px;
  margin: auto;
  background-color: #fff;
  padding: 17px;
  box-shadow: 0 0 10px 0 #cccccc;
}

.auth__form .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}

.auth__form button[type=submit] {
  margin-top: 17px;
}

.auth__form input {
  border-radius: 0;
  margin-bottom: -1px;
}

.auth__container {
  align-items: center;
  display: flex;
  height: 90%;
}

