body {
  color: darkgray;
  background-color: #222f45;
  /* font-family: monospace; */
  font-size: large;
  font-family: 'Montserrat';
}

body.flex {
  display: flex;
}

.text-center {
  text-align: center!important;
  margin: auto;
}

a {
  color: #DF7601;
}

.main-h1 {
  color: #2E88AF;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 400!important;
}

.center {
  border: 5px solid;
  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/
  margin: auto;
  padding: 10px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.item-centered {
  justify-content: center;
  display: flex;
}

/* Inserting this collapsed row between two flex items will make 
 * the flex item that comes after it break to a new row */
 .flexbreak {
  flex-basis: 100%;
  height: 0;
}

.form-control {
  border: 1px solid;
  border-radius: 8px;
  border-color: #07648C;
  outline-color: rgba(15, 109, 196, 0);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-signin, .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 15px;
  font-size: 16px;
  width: 100%;
  max-width: 330px;
  margin: auto;
}

.form-control:hover {
  border-color: #ad743a;
}

.form-control:focus-within {
  outline-style: solid;
  outline-width: thick;
  outline-color: rgba(15, 109, 196, 0.24);
  transition: outline-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.button {
  background-color: #2E88AF;
  border: none;
  border-radius: 4px;
  color: white!important;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.button-abort {
  background-color: #632824;
}

.button:hover:enabled {
  background-color: #FFAE15;
  color: #FFF;
}

.button-abort:hover:enabled {
  background-color: rgb(252, 89, 68);
  color: #FFF;
}

.button-grant:hover:enabled {
  background-color: #4caf2e;
}

.button-wide {
  width: 100%;
}