@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Regular.ttf");
}

@font-face {
  font-family: "RobotoBold";
  src: url("../fonts/roboto/Roboto-Bold.ttf");
}

@font-face {
  font-family: "RobotoLight";
  src: url("../fonts/roboto/Roboto-Light.ttf");
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  min-height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  overflow: hidden;
}

.box {
  padding-top: 10px;
  padding-bottom: 15px;
  text-align: center;
  width: 300px;
}

.logo {
  color: #000;
  font-size: 27px;
  padding: 10px 0;
}

.logo img {
  max-width: 100%;
}

.logo__title {
  color: #fff;
  font-size: 20px;
  padding: 10px 0;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  margin-bottom: 15px;
  outline: none;
  padding: 12px 10px;
  width: 250px;
}

input[type="submit"] {
  font-size: 18px;
  margin-bottom: 20px;
  outline: none;
  padding: 10px 0;
  width: 270px;
  cursor: pointer;
  transition: all .2s;
}

.loginError {
  color: red;
  padding: 0 0 20px 0;
}

#signup .error,
#signup .errorExist {
  font-size: 20px;
  color: red;
  padding: 0 0 20px 0;
  display: none;
}

#signup .error.active,
#signup .errorExist.active {
  display: block;
}
