*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background: #afeeee;
}


topbar {
    background-color: #114f71;
    color: #fff;
    font-size: 24pt;
    font-family: 'Quicksand' !important;
    font-weight: bolder;
    letter-spacing: 1px;

    text-align: center;
    padding: 1rem;

    position: fixed;  /* Keep it at the top of the viewport, regardless of scrolling.*/
    top: 0;
    width: 100%;

    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.5);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.5);
    
}


topbar img{
    display: inline-block;
    position: relative;
    float: left;
}

.logo-container{
    position: relative;
    margin: 6em auto -1em auto;
}

.container{
    position: relative;
    top: -200px;
    margin: 0px auto;
    overflow: hidden;
    width: 500px;
    min-height: 30px;
    box-sizing: border-box;
    border-radius: 8px;
    border: 2px solid #78b4a6;
    padding:2em;
}

.form{
    align-items: center;
    display: none;
}

.form-control-label {
    margin: 1px 10px -10px 25px;
    color: #008080;
    font-weight: bold;
}

::-webkit-input-placeholder{
    color: #0e5f68;
    font-weight: 50;
    font-size: 12pt;
    text-transform: none;
}

input,select,textarea,
textarea.form-control{
    outline:0;
    display: none;
    width:95%;
    padding: 7px 10px;
    margin: 10px 5%;
    font-size: 16pt;
    background: #e0ffff;
    border: 1px solid #acdfd3;
    border-radius: 4px;
    color: #0e5f68;
    width: 350px;
}

input[type="button"]{
    background-color: #1a5121;
    color: #b0c4de;
    font-size: 18pt;
    cursor: pointer;
    font-family: monospace;
}

input[type="button"]:hover {
    color:#7fff00;
    background:#2f4f4f;
}

input[type="button"]:disabled {
    color:#777;
    background:#778899;
    cursor: not-allowed;
}

span{
    display: flex;
    justify-content: center;
    margin-top: 50px ;
}

h2{
    position: relative;
    margin-top: 1em;
    margin-bottom: -1em;
    color: #030;
    font-size: 20pt;
    font-family: 'Quicksand' !important;
    font-weight: normal;
    letter-spacing: 1px;
    display: none;
    justify-content: center;
    opacity: .3;
}

.sub_text{
    font-size:14pt;
    color: #464;
    padding: 0 0px 20px 20px;
}

.red_star{
    color:#cf0000;
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0;
}
.red_star:before{content: '*';}


/*
 * Component: Callout
 * ------------------
 */
.callout {
    border-radius: 3px;
    margin: 20px 0 20px 0;
    padding: 15px 30px 15px 15px;
    border-left: 8px solid #eee;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}


.bg-red,
.callout.callout-danger,
.alert-danger,
.alert-error,
.label-danger{
  background-color: #e9967a !important;
}

.bg-yellow,
.callout.callout-warning,
.alert-warning,
.label-warning{
  background-color: #f5ed9d !important;
}

.bg-aqua,
.callout.callout-info,
.alert-info,
.label-info{
  background-color: #00c0ef !important;
}
.bg-blue {
  background-color: #0073b7 !important;
}
.bg-light-blue,
.label-primary{
  background-color: #3c8dbc !important;
}

.bg-green,
.callout.callout-success,
.alert-success,
.label-success{
  background-color: #66CDAA !important;
}

.callout a {
  color: #fff;
  text-decoration: underline;
}
.callout a:hover {
  color: #eee;
}
.callout h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 800;
  border-bottom: solid 0.1em;
}
.callout p:last-child {
  margin-bottom: 0;
}

.callout ul {
    margin-left: 2.5em;
}

.callout code,
.callout .highlight {
  background-color: #fff;
}
.callout.callout-danger {
  border-color: #c23321;
}
.callout.callout-warning {
  border-color: #FF8C00;
}
.callout.callout-info {
  border-color: #0097bc;
}
.callout.callout-success {
  border-color: #00733e;
}


/*
 * Component: alert
 * ----------------
 */

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
    margin-top: 0;
    color: inherit;
    font-weight: 600;
}
.alert .alert-link {
  font-weight: bold;
}




.alert .icon {
  margin-right: 10px;
}
.alert .close {
  color: #000;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.alert .close:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.alert a {
  color: #fff;
  text-decoration: underline;
}
.alert-success {
  border-color: #008d4c;
}
.alert-danger,
.alert-error {
  border-color: #d73925;
}
.alert-warning {
  border-color: #e08e0b;
}
.alert-info {
  border-color: #00acd6;
}


.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #333;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}