*{
    margin: 0;
    padding: 0;
}
body{
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}


.certificados{
    color: white;
    /* background-image: url('../../files/fondo_2.jpg'); */
    height: 100vh;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

/* .background-blur{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(120px) saturate(180%);
    z-index: -1;
} */

.certificado-card {
    /* border: 1px solid rgba(255, 255, 255, .08); */
    position: relative;
    /* background: rgba(0, 0, 0, .2); */
    overflow: hidden;
    padding: 2rem 1.5rem;
    border-radius: .65rem;
    width: 680px;
    z-index: 1;
}


/* .efecto_blur{
    background: #00012D;
    position: absolute;
    top: 0;
    left: -20px;
    border-radius: 50%;
    width: 20rem;
    height: 28rem;
    z-index: -1;
}
.blur_two{
    background: #00012D;
    position: absolute;
    bottom: 0;
    right: -20px;
    border-radius: 50%;
    width: 20rem;
    height: 28rem;
    z-index: -1;
} */



.certificadosForm__entradas{
    padding: 15px;
}

/* .certificados{
    display: flex;
    justify-content: center;
} */
.certificadosForm__heading{
    font-size: 25px;
    text-align: center;
}
@media (min-width:768px){
    .certificadosForm__heading{
        font-size: 35px;
    }

    .certificadosForm__entradas{
        padding: 0px;
    }
}
.certificadosBuscador{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
@media (min-width:768px){
    .certificadosBuscador{
        flex-direction: row;
        column-gap: 20px;
        justify-content: space-between;
    }

    
}
.certificadosBuscador__entrada input{
    border: none;
    width: 100%;
    height: 40px;
    
    outline: none;
    padding: 0 5px;
    
}

.certificadosBuscador__entrada{
    display: flex;
}
.certificadosBuscador__entrada input:focus{
    color: black;
    background-color: #c0fbff;
}
@media (min-width:768px){
    .certificadosBuscador__entrada input{
        width: 450px;
    }
}
.certificadosBuscador__busqueda i{
    margin-right: 10px;
}
.certificadosBuscador__busqueda button{
    color: black !important;
    border:none;
    height: 40px;
    width: 100%;
    border-radius: 10px;
    background-color: #28e4f0;
    font-weight: bold;
    transition: background-color .3s ease-in;
}

@media (min-width:768px){
    .certificadosBuscador__busqueda button{
        width: 200px;
    }
}