html {
    height: 100%;
}

body {
    justify-content: center;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

/*Fondo*/
.fondo {
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background-image: url(/image/Login.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    filter: blur(2px);
    z-index: -1;
}

form {
    height: 100%;
}

/*Contenedor Llenar Datos*/
.contenedor_principal {
    width: 400px;
    height: 90%;
    position: relative;
    background: rgb(255, 246, 246);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.66);
}

.Espacio {
    height: 30px;
    width: 100%;
}

.contenedor_principal img {
    justify-content: center;
    display: block;
    width: 70%;
}

.contenedor_principal h2 {
    margin: 10px;
    padding: 0;
    text-align: center;
    color: #B20C0C;
    font-family: 'Alfa Slab One', cursive;
}

/*Enlaces*/
.contenedor_principal p {
    margin-top: 30px;
    font-size: 12px;
    padding: 0;
    text-align: center;
    color: black;
    font-family: 'Alfa Slab One', cursive;
}
.contenedor_principal span {
    font-weight: bold;
}
.RegistroCC p {
    margin-top: 15px !important;
    margin: 0;
}

.enlaces p {
    margin-top: 10px;
}

.enlaces a {
    margin: 0;
    text-decoration: none;
    color: #B20C0C;
    font-family: 'Alfa Slab One', cursive;
}

.contenedor_principal button {
    width: 140px;
    font-family: 'Alfa Slab One', cursive;
    height: 40px;
    cursor: pointer;
    border: none;
    color: white;
    background-color: #B20C0C;
    border-radius: 20px;
    outline: none;
    margin-top: 30px;
}

/*Formulario*/
.IngresoRecupera {
    width: 80%;
}
.IngresoRecupera input {
    width: 100%;
    
    margin-top: 2px;
    padding: 5px;
    border: solid rgb(99, 98, 98) 2px;
    border-radius: 20px;
    background: white;
    font-size: 16px;
    outline: none;
}
.volver {
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    color: #B20C0C;
}

.ingreso_dato_Usuario,
.ingreso_dato_cedulaCC,
.ingreso_dato_correoCC,
.ingreso_dato_direccionCC,
.ingreso_dato_celularCC,
.ingreso_dato_contraCC {
    display: flex;
    font-size: 11px;
    align-items: center;
    width: 93%;
    padding: 5px;
    margin-bottom: 10px;
}

.ingreso_dato_Usuario input,
.ingreso_dato_cedulaCC input,
.ingreso_dato_correoCC input,
.ingreso_dato_direccionCC input,
.ingreso_dato_celularCC input,
.ingreso_dato_contraCC input {
    width: 100%;
    margin-top: 2px;
    padding: 5px;
    padding-left: 35px;
    border: solid rgb(99, 98, 98) 2px;
    border-radius: 20px;
    background: white;
    font-size: 16px;
    outline: none;
}

.bx {
    margin-top: 10px;
    font-size: 25px;
    transform: translateX(-35px);
    cursor: pointer;
}

.bxs-user,
.bxs-lock,
.bxs-envelope,
.bxs-id-card,
.bxs-home,
.bxs-phone {
    margin-top: 8px;
    transform: translateX(35px);
}

/*Estilos de Mensajes de Error */
body .mensaje-resultado {
    display: flex;
    position: absolute;
    top: 102px;
    left: 50%;
    background-color: #B20C0C;
    transform: translate(-50%, 50%);
    font-family: 'Roboto Slab', serif;
    color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 400px;
    height: 60px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.mensaje-resultado-exito {
    display: flex;
    position: absolute;
    top: 102px;
    left: 50%;
    background-color: #00C83C;
    transform: translate(-50%, 50%);
    font-family: 'Roboto Slab', serif;
    color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 400px;
    height: 60px;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

@media (max-width: 850px) {
    html {
        zoom: 0.9;
    }
}

@media (max-width: 768px) {
    html {
        zoom: 0.85;
    }
}

@media (max-width: 400px) {
    html {
        zoom: 0.8;
    }
}
