/* Background code from: https://bootstrapious.com/p/bootstrap-static-header*/
body {
	background: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) ), url('2021map.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
    background-color: #23232e;

	color: #fff;

	margin: 0;
	padding: 0;
}

p {
    font-family: Helvetica, Arial, Sans-Serif;
}

p.terms {
    line-height: 1.25;
    font-size:17px;
}

div.centeredColumn {
    max-width:450px;
    display:flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
    min-height:90vh;

    margin-left: auto;
    margin-right: auto;
    padding: 10px 15px 15px 25px;
    
}

.centeredColumn > .btn {
    margin-bottom: 15px;
    max-width:80%;
}

#buttonLayout {
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap:4%;
    height:100%;
    z-index: 20;
}

.btn-choices {
    background: #99C941;
    color: #fff;
    border: 2px solid #506823;
    font-family: Helvetica, Arial, Sans-Serif;
    width:100%;
    font-size: 20px;
  }

  .btn-choices:hover, .btn-choices:focus, .btn-choices:active {
    background: #99C941 !important;
    border-color: #99C941 !important;
    color: #506823;
  }

.title {
    margin-top:20px;
    margin-bottom: -75px;
    padding-bottom: 25px;
    width:100%;
    height:127px;
   /* background-color:rgba(35,35,46,.6); */
    text-align: center;
    background-image: url('/images/yellow-paint.png');
    /* https://www.onlygfx.com/20-paint-brush-strokes-png-transparent/ */
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position:relative;
    z-index: 15;
}

#titleText {
    margin-top: 12px;
    font-family: Helvetica, Arial, sans-serif;
    letter-spacing: 3px;

    font-size: 20px;
    width:100%;
    color:white;
    font-weight: 800;
    text-shadow: 2px 2px #000;


}

#formLayout, .groupContainer {
    z-index: 20;
    position: relative;
}


.form-control {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.5); 
    height: 54px;
    font-size: 18px;
    font-weight: 300;
    color:#000;
    margin: 5px 0;
  }
  
  .form-control:active, .form-control:focus
  {
      outline: none;
      border-color: #99C941;
  }
    
  .errorDescription {
    color:white !important;
    font-size: .8em;
    /*background-color: rgba(35,35,46, .8); */
    background-color: rgba(187,68,66, .9);
    padding: 5px;
    text-align: center;
    display:inline-block;
    width: 100%;
    display:none;
    border: solid 2px #f00;
}

.has-error > input {
    /* This gets the text field */
    border-color: #bb4442 !important;
    
}

.has-error > .glyphicon {
    display:block;
}

.has-error > .errorDescription {
    display:block;
}

.groupContainer {
    background-color:white; 
    padding:15px;
    color: black;
    text-align: center;
    position: relative;
    margin: 5px 0;
}

.groupContainer p {
    margin-bottom: 25px;
    position: relative;
    line-height: 1.5;
}

.groupContainer > p:after {
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background: black;
    position: absolute;
    bottom: -10px;
    left: 0;
}

p.no-border {
    margin-bottom: 5px;
}

p.no-border:after {
    display:none;
}
