/* CONFIGURACIONES INICIALES */

/* @import url('https://fonts.googleapis.com/css2?family=Kay+Pho+Du:wght@400;500;600;700&family=Montserrat:ital,wght@0,400;0,500;1,400;1,600&display=swap'); */

/* @font-face {
    font-family: 'Montserrat';
    src: url('./font/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-weight: 700;
    font-weight: 900;
    font-style: italic;
} */

@font-face {
    font-family: 'Montserrat';
    src: url('./font/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    /* font-weight: 700;
    font-weight: 900; */
    font-style: normal;
}

html {
    font-size: 62.5%;
    font-family: 'Kay Pho Du', serif;
    font-family: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rojo:#c81224;
    --gris_calido:#706e6e;
    --gris_claro:#706e6e25;
}
/* Hecho por Gabriel De Anda Romero */
/* Configuraciones del LOGIN */
body {
    background-color: var(--rojo);
    /* background-color: blue; */
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

header {
    height: 150px;
    width: 100vw;
    background-color: black;
    padding: 20px;
    text-align: center;
    color: white;
    /* Importante para posicionar elementos hijos de forma absoluta relativa a este contenedor */
    position: relative;
    /* Estilo del borde */
    border-bottom: var(--gris_claro) solid 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: -10px 0 30px 1px black;
}

header > h1 {
    margin: 20px 0 0 0;
    font-size: 3rem;
}

#logo {
    /* Posicionar la imagen */
    max-width: 150px;
    height: auto;
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Estilizar la imagen */
    /* border: whitesmoke solid 3px; */
    border-radius: 30px;
    box-shadow: 0 0 30px white;
}

main {
    background-color: rgb(0, 0, 0);
    border: solid 5px var(--gris_claro);
    border-radius: 30px;
    box-shadow: -5px 0 30px 1px black;
    margin: 15vh 0 0 0;
    padding: 3vw;
    color: white;

    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
}
/* Hecho por Gabriel De Anda Romero */
#div_iniciar_sesion {
    margin: 30px 0 0 0;
}

#div_iniciar_sesion > a {
    border: none;
    border-bottom: 1px solid white;
    border-radius: 20px;
    padding: 5px;
    width: 70%;
    outline: none;
    color: var(--gris_calido);
    background-color: white;
    box-shadow: 0 0 15px 1px white;
    font-size: 1.8rem;
    /* margin-top: 8px; */
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;

    transition: 0.5s;
}

#div_iniciar_sesion > a:hover {
    color: white;
    background: none;
    width: 80%;
    border: none;
    border-bottom: 1px solid white;
    border-radius: 0; 
}
/* Hecho por Gabriel De Anda Romero */