.navbuttons {
  display: flex;
  list-style-type: none;
  margin: 0 20px;
  padding: 0;
  gap: 1px;
}
.navbuttons a {
  border-radius: 5px 5px 0 0;
  border: none;
  background-color: rgb(41, 40, 41);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: all ease-in-out 0.3s;
  padding: 10px 15px;
  font-weight: 300;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}
.navbuttons a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.navbuttons a.active {
  background-color: rgba(41, 40, 41, 0.6);
  color: rgb(41, 40, 41);
}

.navigation-footer {
  margin: 0 20px;
  height: 30px;
  background-color: rgba(41, 40, 41, 0.6);
}

input[type=button],
input[type=submit],
input[type=reset] {
  border: none;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(239, 76, 37, 0.9);
  transition: all ease-in-out 0.3s;
  color: #fff;
  border-radius: 3px;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 300;
}
input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover {
  background-color: rgb(239, 76, 37);
  text-decoration: none;
}
input[type=button]:active, input[type=button]:focus,
input[type=submit]:active,
input[type=submit]:focus,
input[type=reset]:active,
input[type=reset]:focus {
  background-color: rgba(239, 76, 37, 0.9);
}

.login-form {
  width: 500px;
  margin: 95px auto;
}
.login-form input[type=text],
.login-form input[type=password],
.login-form input[type=text]:focus,
.login-form input[type=password]:focus {
  min-width: 100%;
  height: calc(2em + 0.75rem + 2px);
  font-size: 20px;
}

.card-header {
  font-size: 18px;
  padding: 20px;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0 20px 20px 20px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card .card-body {
  padding: 20px;
}
.card .form-group {
  margin-bottom: 1rem;
}
.card label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}/*# sourceMappingURL=styles.css.map */