input:-webkit-autofill {
    -webkit-text-fill-color:white;
}
input:-webkit-autofill:focus {
    -webkit-text-fill-color: white;
}

.help-block-error{
    color:red;
}

p.message{
    color:white;
}
.success{  
    padding: 10px 10px;
    border-radius: 10px;
    border: 2px solid #6afd58;
    background-color: #9bff7a9e;
}
.error{  
    padding: 10px 10px;
    border-radius: 10px;
    border: 2px solid #ff4d7a;
    background-color: #ff1e1e8c;
}


.submit {
    float:left;
}

.loader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #B6251B;
    width: 35px;
    height: 35px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    float: left;
    margin: 5px;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}