/* CONFIGURACIONES INICIALES */
/* Hecho por Gabriel De Anda Romero */
/* @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;
}
/* Hecho por Gabriel De Anda Romero */
:root {
    --rojo:#c81224;
    --gris_calido:#706e6e;
    --gris_claro:#706e6e25;
}

/* 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%; */
    top: 165px;
    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;
    width: 80%;
    max-width: 500px;
    color: white;

    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Hecho por Gabriel De Anda Romero */
form {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

form > h2 {
    margin: 3vh 0 0 0;
    font-size: 2.4rem;
}

.div_inputs {
    margin: 5vh 0 0 0;
    width: 100%;
}

.ultimo {
    margin-bottom: 5vh;
}

.div_inputs>label {
    font-size: 2rem;
}

.div_inputs > input {
    display: block;
    /* height: 100%; */
    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.6rem;
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;

    transition: 0.5s;
}

.div_inputs>input:hover, .div_inputs>input:focus {
    color: white;
    background: none;
    width: 80%;
    border: none;
    border-bottom: 1px solid white;
    border-radius: 0;   
}

button {
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 3vh 0;
    color: white;
    background: #706e6e25;
    font-size: 1.4rem;
    box-shadow: 0 0 30px 5px var(--gris_claro);
    border: solid 1px white;
    padding: 5px;
    border-radius: 30px;
    border-bottom: 1px solid rgb(255, 255, 255);
    transition: 0.5s;

}
/* Hecho por Gabriel De Anda Romero */
button:hover, button:focus {

    border: none;
    border-bottom: 1px solid white;
    border-radius: 20px;
    padding: 5px;
    outline: none;
    color: var(--gris_calido);
    background-color: white;
    box-shadow: 0 0 15px 1px white;
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
}