/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 23/07/2019, 11:02:20 AM
    Author     : Maikol Gutiérrez
*/
/************************* VARIABLES *************************/

:root {
    --imagen-fondo-norte: url(img/fondo_totalnet-web.png);
    --fondo-formulario-inicio-sesion: linear-gradient(to top, #FF9C2C, #FDC830);
}

.logo {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.inicio_session {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background-image: var(--imagen-fondo-norte);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-box-shadow: -1px -1px 6px 1px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px -1px 6px 1px rgba(0,0,0,0.75);
    box-shadow: -1px -1px 6px 1px rgba(0,0,0,0.75);
}

.formulario-caja {
    display: flex;
    position: relative;
    width: 400px;
    height: 550px;
    background: var(--fondo-formulario-inicio-sesion);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
}

.formulario-valores img {
    width: 100px;
    border-radius: 5%;
    display: block;
    margin: 20px auto;
    margin-bottom: 20px;
}

.inputbox {
    position: relative;
    margin: 30px 0;
    width: 310px;
    border-bottom: 2px solid #fff;
}

.inputbox label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.5rem;
    pointer-events: none;
    transition: .5s;
}

input:focus ~ label,
input:valid ~ label {
    top: -5px;
}

.inputbox input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    padding:0 35px 0 5px;
    color: #fff;
}

.inputbox i {
    position: absolute;
    right: 8px;
    color: #fff;
    font-size: 1.2em;
    top: 20px;
}

.input-style {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
}

.opciones-formulario {
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
    margin: 25px 0 10px;
}

.opciones-formulario p a {
    text-decoration: none;
    color: #666;
    font-weight: 600;
}

.opciones-formulario p a:hover {
    text-decoration: underline;
}

.centro-xy {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.centro-x {
    background-color: #FF9C2C;
    position: relative;
    top: 150px;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
}

.centro-relativo-x {
    top: 150px;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
}

.table-cuadro{
    background-color: white;
}

.table-cuadro tr:nth-child(even) {
    background-color: lightgray;
}

@media screen and (max-width: 768px) {

    .formulario-caja {
        width: 100%;
        height: 100%;
    }

    .input-style {
        width: 100%;
    }

}