@charset "utf-8";
/* CSS Document */

input[type=text], select, input[type=email] {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border: 1px solid #DDDDDD;
  width:100%;
  
  padding: 8px 0px 8px 8px;
  margin: 5px 1px 3px 0px;
}
 
input[type=text]:focus, select:focus, input[type=email]:focus {
  box-shadow: 0 0 5px rgba(81, 203, 238, 1);
  border: 1px solid rgba(81, 203, 238, 1);
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.btn-success {
    color: #fff;
    background-color: #af0b14;
    border-color: #980108;
}

.btn-success-red {
    color: #fff;
    background-color: #ff0000;
    border-color: #c20202;
}

.btn-success-green {
    color: #fff;
    background-color: #03a107;
    border-color: #028105;
}

input[type="checkbox"]{
 border: 1px solid #c8c6c6;
 width: 25px;
 height: 25px;
 border-radius: 2px;
 margin: 0 15px 0 0;
}
 
