@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    min-height: 100vh;
    font-family: "Poppins", sans-serif;

    background-image: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/vELZ2/relevos/elrecurso/bg-oficial.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.buscar-form{
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
    padding: 13px;
    background-color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    border-radius: 20px;
}



.cusdiv{
    margin-bottom: 10px;
}


.buscar-form input{
    width: 100%;
    padding: 10px 15px;
    margin: 8px 0;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 20px;
}

.custombtn{
    font-weight: 600;
    color: #000;
    border: #001d3d 2px solid;
    padding: 10px;
    width: 100%;
    border-radius: 25px;
    cursor: pointer;
    transition: .3s ease all;
}

.custombtn:hover{
    background-color: #001d3d;
    color: #fff;
}


.txtser{
    font-weight: 800;
    color: #fff;
    font-size: 40px;
    text-align: center;
    margin: 40px 0;
}



.divbut{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cusbut{
    padding: 10px;
    font-weight: 600;
    color: #fff;
    background: #001d3d;
    border: 2px solid #fff;
    border-radius: 20px;
    margin: 5px 8px;
    cursor: pointer;
    transition: .3s ease all;
}

.cusbut:hover{
    background-color: #fff;
    color: #001d3d;
}
