.contact-form {
    width: 65%;
    margin: 0 auto;
    padding: 20px 5px;
    font-size: 18px;
}
    /* Import font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
.Fcontainer input[type=text], input[type=email], select, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #0082e6;
    border-radius: 5px;
    box-sizing: border-box;
    outline: none;
    margin-top: 6px;
    background-color: #f8f9fa; 
    font-size: 18px;  
    color: #000;  
    margin-bottom: 16px;
    resize: vertical;
  }
  
  .Fcontainer input[type=submit] {
    background-color: #0082e6; 
    padding: 8px 18px;
    font-size: 18px;
    border: 2px solid #0082e6;
    border-radius: 5px;
    color: #f8f9fa;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .Fcontainer input[type=submit]:hover {
   background-color: #f8f9fa;  
   color: #0082e6;
  }
  
  .Fcontainer {
/*    background-color: var(--secondary-background-color);  */
    padding: 20px;
    margin-top: 5%;
    margin-bottom: 10%;
  }
  .submit-button {
    align-items: center;
    text-align: center;
  }
  @media (min-width: 1500px) {
  .contact-form {
    width: 50%;
  }
}
@media (max-width: 768px) {
    .contact-form {
      width: 100%;
    }
}

/* Submission Message Page Style*/
    .sub-mesg{
        text-align: center;
        margin: 30% 5%;
    }
    .sub-mesg, h2 {
        padding: 5px;
    }
    .sub-mesg, p {
        padding: 5px 10px;
        font-size: 20px;
    }
    .mail{
        color: #0082e6;
    }
    .return-btn {
        background-color: #0082e6; 
        padding: 8px 18px;
        font-size: 18px;
        border: 2px solid #0082e6;
        border-radius: 5px;
        color: #f8f9fa;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .return-btn:hover {
        background-color: #f8f9fa;  
        color: #0082e6;
    }
    @media (max-width: 858px){
    .mail{
        color: #0082e6 !important;
    }
    }