/* This one gives a general style to the body of the html page. */
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

/* Modifying the input tags */
input {
  margin-bottom: 10px;
}

input[type="text"] {
  font-size: 14px;
  text-align: center;
}

input[type="password"] {
  font-size: 14px;
  text-align: center;
}

/* Styling buttons. */
.btnSubmit {
  background-color: #CC0049;
  color: white;
  font-size: 14px;
}

.btn:focus {
  border-color: #CC0049;
  box-shadow: 0 0 5px #CC0049;
}

/* Styles the form control color */
.form-control:focus {
  border-color: #CC0049;
  box-shadow: 0 0 5px #CC0049;
}

/* Adds margin to the logo in the login page. */
#logo {
  margin-bottom: 10px;
}