label{
    display: block;
    margin-bottom: 0;
    color: var(--color-primary);
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 2vw, 16px);
}

.input-mess{
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    padding: 10px 10px;
    /* transition: all 0.3s ease; */
    outline: none;
    transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: text;
    
}

.input-mess:active {
  transform: scale(0.95);
}



.contact-form{
    box-shadow: var(--shadow);
    border-radius: var(--border);
    padding: 30px;
    width: 100%;
}

.contact-form h2{
    color: var(--color-primary);
    font-weight: 500;
}

.contact-form button{
    width: 100%;
    padding: 10px;
    text-align: center;
    display: block;
    align-items: center;
    border-radius: 99px;
    /* background-color: #fff;
    border: 1px solid var(--color-primary); */
    text-transform: uppercase;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    color: var(--color-secondary);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    outline: none;
    border: none;
    background: linear-gradient(135deg, #0F674F 0%, #1FA37A 100%);
    box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
    color: #fff;
}


button:hover {
  /* background: linear-gradient(135deg, #0F674F 0%, #1FA37A 100%);
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  border: none; */
  transform: translateY(-7px);
}

button:active {
  transform: translateY(-1px);
}

.form-success {
  margin-top: 20px;
  background: #e6f6f1;
  color: var(--color-primary);
  padding: 12px 16px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  border-radius: 5px;
  margin-bottom: 16px;
  font-weight: 500;
}
