/*# sourceMappingURL=style.css.map */
/* CSS (Using BEM methodology) */

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .contact-form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
  }
  
  .contact-form__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
  }
  
  .contact-form__form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form__group {
    margin-bottom: 15px;
  }
  
  .contact-form__label {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #555;
  }
  
  .contact-form__input,
  .contact-form__textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .contact-form__input:focus,
  .contact-form__textarea:focus {
    border-color: #007BFF;
    outline: none;
  }
  
  .contact-form__textarea {
    height: 100px;
    resize: vertical;
  }
  
  .contact-form__button {
    padding: 10px;
    background-color: #007BFF;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .contact-form__button:hover {
    background-color: #0056b3;
  }