body {
      font-family: 'Segoe UI', sans-serif;
      background: url('../fotos/Principal.jpeg') no-repeat center center fixed;
      background-size: cover;
      margin: 0;
      padding: 50px 15px;
    }
    

    .form-container {
      background: rgba(255, 255, 255, 0.582);
      padding: 35px;
      max-width: 750px;
      margin: auto;
      border-radius: 18px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      border-left: 10px solid #007acc8a;
    }

    h2 {
      text-align: center;
      color: #007acc;
      margin-bottom: 30px;
    }

    label {
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
      color: #333;
    }

    input,
    select {
      width: 100%;
      padding: 12px;
      border: 2px solid #d0e1f9;
      border-radius: 10px;
      box-sizing: border-box;
      font-size: 15px;
      margin-bottom: 20px;
    }

    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;
    }