/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Nov 30, 2021, 8:55:11 PM
    Author     : seanb
*/

body {
    font-size: 16px;
    background: #f9f9f9;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
h2 {
    /*text-align: center;
    text-decoration: underline;*/
}
form {
    width: 700px;
    background: #fff;
    padding: 15px 40px 40px;
    border: 1px solid #ccc;
    margin: 50px auto 0;
    border-radius: 5px;
}

btn {
    color: #C43B30;
}

.btn {
  background-color: #C43B30; /* TI Red */
  border: none;
  color: white; /* text */
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  button:focus{background-color:red;}
}

btn:disabled,
btn[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}


.btn:hover {
    background-color: #C43B30;
    color: white;
  }

.btn:focus {
    background-color: #C43B30; /* Ti Red - a bit lighter */
    color: white;
  }

label {
    display: block;
    margin-bottom: 5px
}
label i {
    color: #999;
    font-size: 80%;
}
input, select {
    border: 1px solid #ccc;
    padding: 10px;
    /*display: block;
    width: 100%;
    box-sizing: border-box;*/
    border-radius: 2px;
}
.row {
    padding-bottom: 20px;
}
.form-inline {
    border: 1px solid #ccc;
    padding: 8px 10px 4px;
    border-radius: 2px;
}
.form-inline label, .form-inline input {
    display: inline-block;
    /*width: auto;*/
    padding-right: 15px;
}
.error {
    color: red;
    font-size: 90%;
}
input[type="submit"] {
    font-size: 110%;
    font-weight: 100;
    background: #C43B30; /*#006dcc;*/
    border-color: #016BC1;
    box-shadow: 0 3px 0 #0165b6;
    color: #fff;
    margin-top: 10px;
    cursor: pointer;
}
input[type="submit"]:hover {
    background: #0165b6;
}

  ul.helper-text {
    display: block;
    /*margin-top: 6px; */
    font-size: 12px;
    /*line-height: 22px;*/
    color: #808080;
    
    
    li.valid {
      color: #1fd34a;
    }
  }

  /* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
  margin-top: 0px; 
  margin-bottom:0; padding-top:0;
}

.valid:before {
  position: relative;
  left: -5px;
  content: "\2713";
}

/* Add a red text color and an "x" icon when the requirements are wrong */
.invalid {
  color: red;
  margin-top: 0px; 
  margin-bottom:0; padding-top:0;
}

.invalid:before {
  position: relative;
  left: -5px;
  content: "\2717";
}

form i {
    margin-left: -30px;
    cursor: pointer;
}