/* https://icons.getbootstrap.com/#usage */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");
form i {
    margin-left: -16px;
    cursor: pointer;
}

@font-face {
    font-family: WalikikiFont;
    src: url("ReviolaScript Free.ttf");
}
* {
  box-sizing: border-box;
}

body {
  font-family: "helvetica";
  font-size: 16px;
  max-width: 800px;
  background: black;
  margin: auto;
  color: #603000;
}

/* Header/Blog Title */
.header {
  padding-top: 5px;
  text-align: center;
  background: #8bc43f;
  background-image: url("img/header.jpg");
  background-repeat: no-repeat;
  background-position: top;
}

.header h1 {
  font-family: WalikikiFont;
  letter-spacing: 0.25rem;
  font-size: 60px;
  padding: 0px;
}

.header .message_none {
  padding-top: 5px;
  font-size: smaller;
}

.header .message_info {
  padding-top: 5px;
  font-size: smaller;
  background: #8bc43f;
}

.header .message_error {
  padding-top: 5px;
  font-size: smaller;
  background: #ff9302;
  color: white;
}

.header .message_fatal {
  padding-top: 5px;
  font-size: smaller;
  background: #fc1a05;
  color: white;
}


/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #26913c;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 5px 10px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #8bc43f;
  color: black;
}

.content {   
  clear: both;
  width: 100%;
  background: #b9e6eb;
  padding: 20px;
}

/* Add a card effect for articles */
.login, .card {
  max-width: 760px;
  background-color: #eee;
  padding: 20px;
  margin: auto;
  border-radius: 15px;
  box-shadow: 0px 0px 20px 5px rgba(160, 160, 240, 0.5);
}

.login {
  max-width: 400px;
}

/* Footer */
.footer {
  padding: 5px;
  text-align: center;
  background: #26913c;
  font-size: 12px;
  color: white;
}

.footer a {
  color: white;
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}








hr {
  color: #e80;
}
.content .card-detail {
    display: flex;
    flex-flow: column;
    padding: 15px 0;
}
.content .card-detail strong {
    display: block;
    color: #e80;
    margin-bottom: 2px;
}

.btn {
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 0;
    background-color: #26913c;
	font-size: larger;
    color: white;
    padding: 0 14px;
    border-radius: 10px;
    height: 42px;
    box-shadow: 0px 0px 5px 1px rgba(240, 160, 0, 0.5);
}
.btn:hover {
    background-color: #8bc43f;
    color: black;
}


.form {
    display: flex;
    flex-flow: column;
    width: 100%;
}
.form .form-label {
    display: block;
    padding: 20px 0 10px 0;
    color: #e80;
}
.form .form-group {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.form .form-group .form-icon-left, .form .form-group .form-icon-right {
    fill: #c1c6cb;
    width: 40px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    pointer-events: none;
}
.form .form-group .form-icon-left {
    left: 0;
}
.form .form-group .form-icon-left + .form-input {
    padding-left: 40px;
}
.form .form-group .form-icon-right {
    right: 0;
}
.form .form-group .form-icon-right + .form-input {
    padding-right: 40px;
}
.form .form-group:focus-within .form-icon-left {
    fill: #989fa8;
}
.form .form-input {
    width: 100%;
    height: 43px;
    border: 1px solid #dee1e6;
    padding: 0 15px;
    border-radius: 4px;
    color: black;
	font-size: large;
}
.form .form-input::placeholder {
    color: #989fa8;
}
.form .form-link {
    color: #26913c;
    text-decoration: none;
}
.form .form-link:hover {
    color: black;
}

.mar-bot-5 { margin-bottom: 25px; }
