.contato-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: #f0f9ff;
    min-height: 80vh;
  }
  
  .form-wrapper {
    position: relative;
    background: white;
    padding: 2rem;
    width: 100%;
    max-width: 420px;
    border: 1px solid #38bdf8;
    border-radius: 12px;
    box-shadow: 0 0 0 4px #e0f2fe, 0 0 80px 8px #7dd3fc;
  }
  
  .form-titulo {
    text-align: center;
    font-size: 1.5rem;
    color: #0ea5e9;
    margin-bottom: 1.5rem;
  }
  
  form label {
    font-weight: bold;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
  }
  
  form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #bae6fd;
    border-radius: 6px;
    outline: none;
    transition: border 0.3s;
  }
  
  form input:focus, form textarea:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 2px #7dd3fc;
  }
  
  form button {
    background-color: #0ea5e9;
    color: white;
    font-weight: bold;
    padding: 10px 0;
    border: none;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  form button:hover {
    background-color: #0284c7;
  }
  
  #status-msg {
    margin-top: 10px;
    text-align: center;
    font-size: 0.9rem;
  }
  