/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Roboto:300);

#subheading {font-weight:bold; font-size:16px; color:#777;}
/*
#subheading {font-weight:bold; font-size:16px; color:#d35aa1;}
*/
A:link {color:#d35aa1;}
A:visited {color:#d35aa1;}
A:hover {color:gray;}
textarea {font-size:12px}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #dedede;
}


.navbar_poweredup {
	color: #fff;
    background-color: #dedede;
	font-size:16px;
}
.form-poweredup label{
    font-weight:bold;
}
.form-poweredup textarea{
    font-size:11px;
}

body {font-size:14px}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.login-page {
  width: 90%;
  padding: 3% 0 0;
  margin: auto;
}
.login-form {
  width: 40%;
  padding: 3% 0 0;
  margin: auto;
}
.login-form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #dedede;
  border: 0;
  width:100%;
  margin: 0 0 15px;  padding: 15px;  box-sizing: border-box;  font-size: 14px;} 
  

.formq input {
  font-family: "Roboto", sans-serif;
  outline: thin;
  background: #eee;
  border: 1px solid #999;
  margin: 0 0 6px;
  padding: 6px;
  color:#000;
  box-sizing: border-box;
  border-radius:4px;
  font-size: 14px;
}
.formq input:focus {
  border: 1px solid #008CBA;
  background-color:#efefef;
}
.formq textarea:focus {
  border: 1px solid #008CBA;
  background-color:#efefef;
}
.formq select:focus {
  border: 1px solid #008CBA;
  background-color:#efefef;
}
.formq select {
  font-family: "Roboto", sans-serif;
  outline: thin;
  background: #dedede;
  border: 1px solid #999;
  margin: 0 0 6px;
  padding: 6px;
  box-sizing: border-box;
  border-radius:4px;
  font-size: 14px;
}
.formq textarea {
  font-family: "Roboto", sans-serif;
  outline: thin;
  color:#000;
  background: #dedede;
  border: 1px solid #999;
  margin: 0 0 6px;
  padding: 6px;
  box-sizing: border-box;
  border-radius:4px;
  font-size: 14px;
}


.button {
  background-color: #d35aa1; /* Green */
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  border-radius:8px;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
}

.buttonsm {
  background-color: #d35aa1; /* Green */
  border: none;
  color: white;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 4px 2px;
  border-radius:8px;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
}


.button2 {
  background-color: #dedede; 
  color: black; 
  border: 2px solid #d35aa1;
}

.button2:hover {
  background-color: #d35aa1;
  color: white;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}



