@charset "UTF-8";
/* CSS Document */
 body {
      font-family: 'Roboto', Arial, sans-serif;
      margin: 0;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background-image: url('../img/background-fabricante.jpg'); /* <-- ruta de tu imagen */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
    }

    /* Overlay oscuro para mejorar legibilidad */
    body::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0,0,0,0.5);
      z-index: 0;
    }

    .container {
      position: relative;
      z-index: 1;
      background-color: rgba(255, 255, 255, 0.85);
      padding: 30px 40px;
      border-radius: 5px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      text-align: center;
      max-width: 400px;
      width: 90%;
    }

    .logo {
      max-width: 150px;
      margin-bottom: 20px;
    }
    .visually-hidde{
	color: #706F6F;
    }

    h2 {
      margin-bottom: 20px;
      color: #3C3C3B;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    input[type="email"] {
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
      width: 100%;
      box-sizing: border-box;
    }

    button {
      padding: 12px;
      background-color: #005CA9;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    button:hover {
      background-color: #43A27F;
    }

    .volver {
      display: inline-block;
      margin-top: 15px;
      font-size: 14px;
      color: ##005CA9;
      text-decoration: none;
      transition: color 0.3s;
    }

    .volver:hover {
      color: #43A27F;
      text-decoration: underline;
    }

    p {
      margin-top: 15px;
      font-size: 12px;
      color: #666;
    }



            .error-message {
                background: rgba(255, 0, 0, 0.1);
                border: 1px solid #ff0000;
                border-radius: 8px;
                padding: 30px;
                text-align: center;
                max-width: 400px;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            }
            .error-message h2 {
                margin: 0 0 10px 0;
                color: #ff0000;
            }
            .error-message p {
                margin: 0 0 20px 0;
            }
            .error-message a {
                display: inline-block;
                padding: 10px 16px;
                background: #333;
                color: #fff;
                text-decoration: none;
                border-radius: 4px;
            }
            .error-message a:hover {
                background: #000;
            }
