/*                                                                      */
/* 		                   BUTTONS                       		        */
/*                                                                      */
/* v001 02 Aug 2019 -   Initial version created from WOL mobile.css     */
/* v002 06 Aug 2019 -   Modified to new content element names           */
/*                                                                      */
/*                                                                      */


article.welcome form label { 
  display: block;
  margin: 10px 0;
}

article.welcome input#passcode { 
  width: 99.5%;
  height: 28px;
  padding: 0;
  margin-bottom: 15px;
  border: 2px solid #e2e5e8 /* CSG Pale Grey */;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

article.welcome input.submit, 
table#feedback input.submit {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  height: 32px;
  padding: 0;
  padding-top: 1px;
  color: white;
  background-color: #e2e5e8 /* CSG Pale Grey */;
  border: 2px solid #e2e5e8 /* CSG Pale Grey */;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-appearance: none;
}
article.welcome input.submit:hover,
table#feedback input.submit:hover {
  background-color: white;
  color: #0072ce /* CSG Blue (Pantone 285C) */;
}

p.error {
  display: inline-block;
  border: 2px solid red;
  padding: 5px 10px;
  margin-top: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}


