/* CSS Document */
input[type=text] {margin:2px 0;padding:5px;height:35px;border-radius:4px;}

.input {	height: 50px;	border: 1px solid #979797;	padding:0 20px; border-radius: 3px;	background-color: #FFFFFF;}
.input:hover {height: 50px;	border: 1px solid #3F97C7;	border-radius: 3px;	background-color: #FFFFFF;}
.input:focus {height: 50px;	border: 2px solid #3F97C7;	border-radius: 3px;	background-color: #FFFFFF;}
.input:active {height: 50px;	border: 2px solid #3F97C7;	border-radius: 3px;	background-color: #FFFFFF;}
.input:disabled {height: 50px;	border: 1px solid #D7D7D7;	border-radius: 3px;	background-color: #EFEFEF;}

.input_error {height: 50px;	border: 2px solid #DC3545;	border-radius: 3px;	background-color: #FFFFFF;}

.button {
  background-color: #aaadda;  
  border: none;
  color: white;  
  padding: 8px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.button1 {
  background-color: #aaadda; 
  color: white; 
  border-radius:4px;
  border: 2px solid #aaadda; 
  font-weight: bold;
}
  .button1:hover {
  background-color: white;
  color: #aaadda;  
  border-radius: 4px;
  border: 2px solid #aaadda; 
  font-weight: bold;
}
.button2 {
  background-color: #f6a01a; 
  color: white; 
  border-radius: 4px;
  border: 2px solid #f6a01a; 
  font-weight: bold;
}
  .button2:hover {
  background-color: white;
  color: #f6a01a;  
  border-radius: 4px;
  border: 2px solid #f6a01a; 
  font-weight: bold;
}
.success{ 
  font-size: 16px; color: darkgreen; font-weight: bold;  
}