/* Volunteer Form Site */
.info p {
    text-align:center;
    color: #666;
    text-transform:none;
    font-weight:600;
    font-size:15px;
    margin-top:2px;
    animation: fadeInUp 0.8s ease;
  }
  
  .info i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  form h1 {
    font-size: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: rgb(255, 255, 255);
    padding: 22px 25px;
    border-radius: 10px 10px 0px 0px;
    margin: auto;
    text-shadow: none; 
    text-align:left;
    font-weight: 700;
  }
  
  form {
    border-radius: 15px;
    max-width:700px;
    width:100%;
    margin: 5% auto;
    background-color: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease;
  }
  
  p span {
    color: #F00;
  }
  
  p {
    margin: 0px;
    font-weight: 500;
    line-height: 2;
    color:#333;
  }
  
  h1 {
    text-align:center; 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin:50px 0px 0px 0px;
    font-weight: 800;
  }
  
  input {
    border-radius: 0px 10px 10px 0px;
    border: 2px solid #eee;
    margin-bottom: 15px;
    width: 75%;
    height: 40px;
    float: left;
    padding: 0px 15px;
    font-family: 'Kanit', sans-serif;
    transition: all 0.3s ease;
  }
  
  input:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
  }
  
  a {
    text-decoration:inherit;
    transition: all 0.3s ease;
  }
  
  textarea {
    border-radius: 0px 10px 10px 0px;
    border: 2px solid #EEE;
    margin: 0;
    width: 75%;
    height: 130px; 
    float: left;
    padding: 10px 15px;
    font-family: 'Kanit', sans-serif;
    transition: all 0.3s ease;
  }
  
  textarea:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
  }
  
  .form-group {
    overflow: hidden;
    clear: both;
  }
  
  .icon-case {
    width: 35px;
    float: left;
    border-radius: 10px 0px 0px 10px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    height:42px;
    position: relative;
    text-align: center;
    line-height:40px;
    transition: all 0.3s ease;
  }
  
  .form-group:hover .icon-case {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }
  
  .form-group:hover .icon-case i {
    color: #fff !important;
  }
  
  i {
    color: #667eea;
    transition: all 0.3s ease;
  }
  
  
  .contentform {
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
  }
  
  .bouton-contact{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFF;
    text-align: center;
    width: 100%;
    border:0;
    padding: 17px 25px;
    border-radius: 0px 0px 10px 10px;
    cursor: pointer;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .bouton-contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }
  
  .bouton-contact:hover::before {
    width: 400px;
    height: 400px;
  }
  
  .bouton-contact:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
  }
  
  .leftcontact {
    width:49.5%; 
    float:left;
    border-right: 1px dotted #CCC;
    box-sizing: border-box;
    padding: 0px 15px 0px 0px;
  }
  
  .rightcontact {
    width:49.5%;
    float:right;
    box-sizing: border-box;
    padding: 0px 0px 0px 15px;
  }
  
  .validation {
    display:none;
    margin: 0 0 10px;
    font-weight:400;
    font-size:13px;
    color: #DE5959;
  }
  
  #sendmessage {
    border:1px solid #fff;
    display:none;
    text-align:center;
    margin:10px 0;
    font-weight:600;
    margin-bottom:30px;
    background-color: #EBF6E0;
    color: blue;
    border: 1px solid #B3DC82;
    padding: 13px 40px 13px 18px;
    border-radius: 3px;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.03);
  }
  
  #sendmessage.show,.show  {
    display:block;  
  }
  .bouton-contact{
    background-color: blue;
  }