* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            min-height: 100vh;
            //background-image: url('https://images.unsplash.com/photo-1503264116251-35a269479413');
			//background-image: url('../../img/fondo.jpg');
			background-image: url('../../img/fondo_guardia_2.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }       
		body::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.55);
        }

        /* ================= CONTENEDOR ================= */

        .container {
            position: relative;
            background: #fff;
            padding: 2.5rem;
            border-radius: 14px;
            width: 90%;
            max-width: 420px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
            z-index: 1;
        }

        .container h1 {
            margin-bottom: 0.5rem;
            color: #222;
        }

        .container p {
            margin-bottom: 2rem;
            color: #666;
            font-size: 0.95rem;
        }

        /* ================= INPUT PROFESIONAL ================= */

        .input-group {
            position: relative;
            margin-bottom: 1.8rem;
        }

        .input-group input {
            width: 100%;
            padding: 1rem 0.75rem;
            font-size: 1rem;
            border: 1.5px solid #ccc;
            border-radius: 8px;
            background: transparent;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .input-group label {
            position: absolute;
            top: 50%;
            left: 12px;
            color: #777;
            font-size: 0.95rem;
            transform: translateY(-50%);
            background: #fff;
            padding: 0 6px;
            pointer-events: none;
            transition: 0.3s ease;
        }

        .input-group input:focus + label,
        .input-group input:valid + label {
            top: -8px;
            font-size: 0.75rem;
            color: #17a2b8;
			outline: none;
        }

        .input-group input:focus {
            border-color: #17a2b8;
            //box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
			outline: none;
        }
		
		#buscar {
			position: relative;
			z-index: 10;
		}