@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");
.bt-center {
  text-align: center;
}

.text-center {
  text-align: center;
}

* {
  box-sizing: border-box;
}

.login-page {
  width: 360px;
  margin: 0 auto;
  border-radius: 3px;
  background-color: #ffffff;
  border: solid 2px #e7e7e7;
}
.login-page .login-head {
  height: 190px;
  border-radius: 3px 3px 0 0;
  background-color: #ff9524;
}
.login-page .login-head .logo-img {
  padding: 30px;
}
.login-page .login-head .logo-img img {
  border-radius: 50%;
}
.login-page .form-group {
  margin-bottom: 15px;
}
.login-page .form-group .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.login-page .login-body {
  width: 295px;
  margin-top: -40px;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 20px 5px 20px;
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.17);
}
.login-page .login-body button {
  width: 100%;
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
}
.login-page .login-body button.social-btn {
  border-radius: 5px;
  background-color: #3b5998;
  color: #fff;
  border: none;
}
.login-page .login-body button.social-btn i {
  margin-left: 3px;
  font-size: 16px;
  font-weight: 400;
}
.login-page .login-body button.login-btn {
  border-radius: 5px;
  background-color: #f78900;
  color: #fff;
  border: none;
}
.login-page .login-body p {
  padding: 15px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0;
  font-size: 14px;
  color: #8c8c8c;
}
.login-page .login-footer {
  padding: 20px;
  text-align: center;
}
.login-page .login-footer p {
  margin-bottom: 0;
  color: #fc7f00;
  font-size: 12px;
}

body {
  background: #fafafa;
  font-family: 'Roboto', sans-serif;
  color: #4a4a4a;
}
