body {
    font-family: 'Segoe UI', sans-serif;
    background: url('../fotos/lejitos3.jpeg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 50px 15px;
  }
  
  .form-container {
    background: rgba(255, 255, 255, 0.582); /* Leve transparencia */
    padding: 35px;
    max-width: 750px;
    margin: auto;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgb(0, 0, 0, 0.3);
    border-left: 10px solid #007acc8a;
  }
  
  h2 {
    text-align: center;
    color: #007acc;
    margin-bottom: 30px;
  }
  
  .campo {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #000000;
  }
  
  input,
  select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ffffff;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 15px;
    transition: border 0.3s, box-shadow 0.3s;
  }
  
  input:focus,
  select:focus {
    border-color: #007acc;
    box-shadow: 0 0 5px rgba(0, 122, 204, 0.4);
    outline: none;
  }
  
  button {
    background-color: #007acc;
    color: white;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #005b99;
  } 