html, body {
            margin: 0;
            padding: 0;
            height: 100%;
           font-family: Verdana,sans-serif;
        }

        body {
            background-size: cover;
            background-position: top;
            background-repeat: no-repeat;
        	background-image: url('/img/cms/fondo.jpg'); 
		}

        .container {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .form-wrapper {
            padding: 2rem;
            max-width: 500px;
            width: 90%;
            text-align: center;
        }

        input[type="password"] {
            width: 75%;
            padding: 10px;
            margin-top: 10px;
            font-size: 0.9rem;
            background-color: rgba(255, 255, 255, 0.9); 
	 		opacity:1;
			border: 1px solid #aaa;
  			text-align: center;
        }

        button[type="submit"] {
            margin-top: 10px;
			float:right;
            padding: 10px 20px;
            font-size: 0.9rem;
            background-color: white;
            color: black;
            border: none;
            cursor: pointer;
        }

        button[type="submit"]:hover { background-color: #000;color:#fff; }
        .error { color: red; margin-top: 10px; }

		.modal {
        display: none; 
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        justify-content: center;
        align-items: center;
    }

    .modal-contenido {
        background: #000;
        border-radius: 8px;
        width: 400px;
        max-width: 90%;
        box-shadow: 0px 5px 20px rgba(0,0,0,0.3);
        position: relative;
    }

    .cerrar {
        position: absolute;
        right: 10px;
        top: 5px;
        cursor: pointer;
        font-size: 30px;
        background: none;
        border: none;
		color:#fff;
		z-index:10;
    }
#contenidoModal{}
#abrirModal{ 
	width:98%;
	font-size:16px;
	border:0;
	padding:10px;
	margin-top:20px;
	float:right;
	cursor:pointer;
}

		@media (max-width:767px) {
            body {background-image: url('/img/cms/fondomovil.jpg') !important; }
			input[type="password"] {width: 70%;}
        }

