/* ============================= */
/* REINICIO */
/* ============================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ============================= */
/* FONDO */
/* ============================= */
body{

    background-image:url(bg.jpg);

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    background-attachment:fixed;

    font-family:Calibri, sans-serif;

    min-height:100vh;

    overflow-x:hidden;

    padding:20px;
}

/* ============================= */
/* IMAGENES */
/* ============================= */
img{
    max-width:100%;
    height:auto;
}

/* ============================= */
/* TITULO */
/* ============================= */
.titulo{
    text-align:center;
}

h1{

    color:#F5F6F7;

    font-size:56px;

    margin-top:20px;

    text-shadow:0 0 8px rgba(0,0,0,0.6);
}

/* ============================= */
/* FORMULARIO */
/* ============================= */
.form-reportes{

    width:420px;

    max-width:100%;

    background-color:rgba(106,120,130,0.45);

    padding:28px;

    margin:40px auto;

    border-radius:35px;

    box-shadow:8px 15px 37px rgba(0,0,0,0.5);

    color:#F5F6F7;

    backdrop-filter:blur(8px);

    -webkit-backdrop-filter:blur(8px);
}

/* ============================= */
/* CONTROLES */
/* ============================= */
.controls{

    width:100%;

    background-color:rgba(201,206,209,0.75);

    padding:11px;

    border-radius:8px;

    margin-bottom:16px;

    border:1px solid #8FA3B1;

    font-size:16px;

    color:#2E3235;

    outline:none;

    transition:0.3s;
}

/* ============================= */
/* EFECTO INPUT */
/* ============================= */
.controls:focus{

    border:1px solid #ffffff;

    box-shadow:0 0 10px rgba(255,255,255,0.4);

    background-color:rgba(255,255,255,0.9);
}

/* ============================= */
/* TEXTAREA */
/* ============================= */
textarea.controls{
    resize:none;
    min-height:120px;
}

/* ============================= */
/* BOTON PRINCIPAL */
/* ============================= */
.form-button{

    width:100%;

    background-color:#6E7378;

    color:white;

    padding:14px;

    font-size:20px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    transition:0.3s;
}

/* ============================= */
/* HOVER BOTON */
/* ============================= */
.form-button:hover{

    background-color:#3A3F45;

    transform:scale(1.02);
}

/* ============================= */
/* BOTONES FLOTANTES */
/* ============================= */
.boton-flotante{

    position:fixed;

    bottom:35px;

    z-index:999;
}

/* ============================= */
/* BOTON IZQUIERDO */
/* ============================= */
.boton-flotante.izquierdo{
    left:35px;
}

/* ============================= */
/* BOTON DERECHO */
/* ============================= */
.boton-flotante.derecho{
    right:35px;
}

/* ============================= */
/* BOTONES FLOTANTES ESTILO */
/* ============================= */
.boton-flotante button{

    width:260px;

    padding:18px;

    background-color:rgba(106,120,130,0.45);

    backdrop-filter:blur(8px);

    -webkit-backdrop-filter:blur(8px);

    color:#F5F6F7;

    border:1px solid rgba(143,163,177,0.6);

    border-radius:35px;

    font-size:20px;

    font-family:Calibri, sans-serif;

    box-shadow:8px 15px 37px rgba(0,0,0,0.5);

    cursor:pointer;

    transition:0.3s;
}

/* ============================= */
/* HOVER BOTONES FLOTANTES */
/* ============================= */
.boton-flotante button:hover{

    background-color:rgba(58,63,69,0.75);

    transform:scale(1.03);
}

/* ============================= */
/* LINKS */
/* ============================= */
a{
    text-decoration:none;
}

/* ============================= */
/* SCROLL */
/* ============================= */
::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:#6E7378;
    border-radius:10px;
}

::-webkit-scrollbar-track{
    background:rgba(255,255,255,0.2);
}

/* ============================= */
/* ADAPTACION TABLET */
/* ============================= */
@media (max-width:768px){

    body{

        padding:15px;

        background-attachment:scroll;
    }

    h1{
        font-size:32px;
    }

    .form-reportes{

        width:90%;

        margin:25px auto;

        padding:20px;
    }

    .controls{

        font-size:15px;

        padding:10px;
    }

    .form-button{

        font-size:18px;

        padding:12px;
    }

    .boton-flotante{

        position:static;

        width:90%;

        margin:10px auto;

        text-align:center;
    }

    .boton-flotante button{

        width:100%;

        font-size:18px;
    }

}

/* ============================= */
/* ADAPTACION TELEFONO */
/* ============================= */
@media (max-width:480px){

    body{
        padding:10px;
    }

    h1{
        font-size:26px;
    }

    .form-reportes{

        width:95%;

        padding:18px;

        border-radius:25px;
    }

    .controls{

        font-size:14px;

        padding:10px;
    }

    .form-button{

        font-size:16px;

        padding:11px;
    }

    .boton-flotante button{

        font-size:16px;

        padding:14px;

        border-radius:25px;
    }

}