/* COLONNES */
.columns {
   display: flex;
   flex-wrap: wrap;
}

.column {
   box-sizing: border-box;
   padding: 16px;
}

.col-50 {
   flex: 50%;
   max-width: 50%;
}

.col-100 {
   flex: 100%;
   max-width: 100%;
}

@media only screen and (max-width: 600px) {
   .col-50 {
      flex: 100%;
      max-width: 100%;
   }
}

/* NOTIFICATION */
#ajax-response {
   margin-bottom: 2rem;
   text-align: center;
}
.notification-success {
   background-color: rgb(76, 185, 103);
   color: #FFF;
   padding: 1rem;   
   margin-top: 1rem;
}
.notification-error {
   background-color: rgb(185, 76, 76);
   color: #FFF;
   padding: 1rem;
   margin-top: 1rem;
}

/* FORM */
.ajax-form label {
   font-family: "open sans semi", Sans-serif;
   display: block;
   margin: 0 0 10px;
   color: #FFF;
   font-size: 16px;
   font-weight: 600;
   line-height: 1.25;
   letter-spacing: 0.2em;
}
.ajax-form input, .ajax-form textarea {
   outline: none;
   display: block;
   background: #FFF;
   width: 100%;
   border: 0;
   box-sizing: border-box;
   padding: .5rem 1rem;
   color: rgba(0, 0, 0, 0.6);
   font-family: inherit;
   font-size: inherit;
   font-weight: 500;
   line-height: inherit;
   transition: 0.3s ease;
   border-radius: 8px !important;
}
.ajax-form button {
   font-family: "open sans semi", Sans-serif;
   font-weight: 500;
   font-size: 16px;
   fill: #FFFFFF;
   color: #FFFFFF;
   background-color: #3F7BFE;
   border-radius: 30px 30px 30px 30px;
   padding: 20px 50px 20px 50px;
   outline: none;
   width: auto;
   border: 0;
   font-size: inherit;
   line-height: inherit;
   text-transform: uppercase;
   cursor: pointer;
   margin: auto;
   display: block;
   min-width: 20rem;
}
.ajax-form button:hover {
   background-color: #CAB001;
}