* {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #f6f6f6;
}

/*
  ALERTS
*/
/*
.alert {
  position: absolute;
  top: 0px;
  z-index: 99;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}
*/

.alert {
  padding: 20px;
  background-color: #cff4fc; /* Red */
  color: #055160;
  margin-bottom: 15px;
  border-radius: 10px;
}

/*
  FORMS
*/

#authFormWrapper {
  width: 350px;
  margin: 10% auto;
  text-align: center;
  align-items: center;
}

#authFormInner {
  border: 1px solid #eee;
  margin-top: 20px;
  padding: 10px 20px 25px 20px;
  background-color: #fff;
  border-radius: 4px;
}

input, input[type=email] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  font-size: 16px !important;
}

input[type=submit] {
  font-weight: bold;
  background-color: #16e6cc;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px !important;
}

/* -------------------------------------
    BUTTONS
------------------------------------- */
.btn {
  box-sizing: border-box;
  width: 100%;
}

.btn {
  font-weight: bold;
  background-color: #f6f6f6;
  color: #16e6cc;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px !important;
  text-decoration: none;
}

.btn > tbody > tr > td {
  padding-bottom: 15px;
}

.btn table {
  width: auto;
}

.btn table td {
  background-color: #ffffff;
  border-radius: 5px;
  text-align: center;
}

.btn a {
  background-color: #ffffff;
  border: solid 1px #16e6cc;
  border-radius: 5px;
  box-sizing: border-box;
  color: #3498db;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  padding: 12px 25px;
  text-decoration: none;
  text-transform: capitalize;
}

.btn-primary table td {
  background-color: #3498db;
}

.btn-primary a {
  background-color: #16e6cc;
  color: #ffffff;
}

