/*Don't forget to add Font Awesome CSS : "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"*/
.cd-form{
    /*max-width: 640px;*/
    background: #fff;
    margin: 0 auto;
    padding: 15px 25px;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.cd-info{
    /*max-width: 640px;*/
    background: #fff;
    margin: 0 auto;
    padding: 15px 25px;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}


input[type="text"] {
  width: 100%;
  border: 1.5px solid #aaa;
  border-radius: 4px;
  margin: 8px 0;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  transition: 0.3s;
    text-indent: 0px;
}

input[type="text"]:focus {
  border-color: dodgerBlue;
  box-shadow: 0 0 8px 0 dodgerBlue;
}

.inputWithIcon input[type="text"] {
  padding-left: 40px;
}

.inputWithIcon.inputIconBg input[type="text"]:focus + i {
  color: #fff;
  background-color: dodgerBlue;
}

.inputWithIcon input[type="text"]:focus + i {
  color: dodgerBlue;
}

/*xxxxxx email type xxxxxxxxx*/

input[type="email"] {
  width: 100%;
  border: 1.5px solid #aaa;
  border-radius: 4px;
  margin: 8px 0;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  transition: 0.3s;
}

input[type="email"]:focus {
  border-color: dodgerBlue;
  box-shadow: 0 0 8px 0 dodgerBlue;
}

.inputWithIcon input[type="email"] {
  padding-left: 40px;
}

.inputWithIcon input[type="email"]:focus + i {
  color: dodgerBlue;
}

.inputWithIcon.inputIconBg input[type="email"]:focus + i {
  color: #fff;
  background-color: dodgerBlue;
}
/*xxxxxx email type xxxxxxxxx*/

/*xxxxxx text area type xxxxxxxxx*/

.textarea {
  width: 100%;
  border: 1.5px solid #aaa;
  border-radius: 4px;
  margin: 8px 0;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  transition: 0.3s;
}

.textarea:focus {
  border-color: dodgerBlue;
  box-shadow: 0 0 8px 0 dodgerBlue;
}

.inputWithIcon input[type="textarea"] {
  padding-left: 40px;
}

.inputWithIcon input[type="textarea"]:focus + i {
  color: dodgerBlue;
}

.inputWithIcon.inputIconBg input[type="textarea"]:focus + i {
  color: #fff;
  background-color: dodgerBlue;
}
/*xxxxxx text area type xxxxxxxxx*/

.inputWithIcon {
  position: relative;
}

.inputWithIcon i {
  position: absolute;
  left: 0;
  top: 8px;
  padding: 13px 18px;
  color: #aaa;
  transition: 0.3s;
}

.inputWithIcon.inputIconBg i {
  background-color: #aaa;
  color: #fff;
  padding: 9px 4px;
  border-radius: 4px 0 0 4px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  opacity: 0.4 !important;
   
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
   opacity: 0.4 !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
   opacity: 0.4 !important;
}

.btn-danger {
  color: #fff;
  border-radius: 40px;
  background: transparent;
  transition: all 0.3s ease 0s;
}

.btn-danger:hover {
  color: #fff;
  background: rgba(217, 83, 78, 0.75);
  border: 2px solid rgba(217, 83, 78, 0.75);
}





