@import url("fonts.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

/*Estilos generales*/
html,
body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;

}

body {
    display: flex;
    flex-direction: column;

    font-family: "Monserrat", sans-serif, Arial, Helvetica;

    overflow: hidden;

    background: linear-gradient(whitesmoke, #00a9e664);
}

h1 {
    margin: 0;
    text-align: center;
    font-size: 30px;
}

.fondo {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-image: url(../images/logo-completo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    background-position: center;
}

a {
    text-decoration: none;
    color: #148bcb;
}

a:hover {
    text-decoration: underline;
    color: #1274a8;
}

image {
    height: 100%;
}

/*HEADER*/
header {
    width: 100%;
    min-height: 70px;
    padding: 0;
    margin: 0;
    padding-bottom: auto;

    background-color: whitesmoke;

    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    justify-content: space-between;

    border-bottom: 2px solid rgba(199, 138, 59);
}

.box-logo-bi {
    height: 100%;
    margin-left: 10px;

    box-sizing: content-box;


    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-title {
    display: flex;
    align-items: center;
}

.fake-a {
    text-decoration: none;
    color: #262626;
}

.fake-a:hover {
    text-decoration: none;
    color: #000;

    font-size: 102%;
}

.box-user {
    margin-right: 20px;
    position: relative;
    /* referencia para el tooltip */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;

    cursor: pointer;
    font-size: 16px;
}

.tooltip {
    display: none;
    flex-direction: column;
    gap: 7px;
    text-align: center;

    cursor: default;
    position: absolute;
    top: 80%;
    /* siempre debajo de .box-user */
    left: 10%;
    /* centrado respecto al box */
    transform: translateX(-50%);
    background: #f5f5f5;
    padding: 8px 12px;
    border: 1px solid rgba(199, 138, 59);
    border-radius: 6px;
    min-width: 150px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.settings-button {
    width: 100%;
    background-color: rgb(169, 170, 169);

    border-radius: 10px;
}

.settings-button:hover {
    background-color: rgb(150, 150, 150);
    font-weight: bold;
}

.logout-button {
    width: 100%;
    background-color: rgb(234, 48, 48);

    border-radius: 10px;
}

.logout-button:hover {
    background-color: rgb(203, 43, 43);
    font-weight: bold;
}

.logut-link {
    width: 100%;
    height: 100%;

    color: #000;
    text-decoration: none;
}

.logut-link:hover {
    color: #000;
    text-decoration: none;

}

/*FOOTER*/
footer {
    width: 100%;
    min-height: 70px;
    margin: 0;
    padding: 0;

    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    justify-content: space-between;

    color: rgb(69, 69, 69);

    background-color: #eeeeeed0;
    border-top: 3px solid rgba(199, 138, 59);
}

.copyright {
    width: 50%;
    height: 100%;
    margin-left: 10px;

    display: flex;
    justify-content: left;
    align-items: center;
}

.ver-des {
    width: 50%;
    height: 100%;
    margin-right: 10px;

    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: right;
}

.capitalize::first-letter {
    text-transform: uppercase;
}

.box-incorrect-pass {
    width: 350px;
    height: 50px;

    background-color: #f2dede;

    border-radius: 10px;
    border: 1px solid #ebccd1;

    text-align: center;
    font-weight: 400;
    color: rgb(234, 48, 48);
}