@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Oswald:400,700');

*   {
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    color: white;
    
}

html{
    margin: 0;
    font-family: sans-serif;
    font-size: 62,5%;
    color: white;
}

body {
    background-color: #5a5a5a;
    min-height: 100vh;

    /* Flexbox */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main {
    background-color: #343434;
    
    /* Flexbox Contenido */
    flex-grow: 1;
    
    /* Flexbox */
    display: flex;
}

p {
    font-family: sans-serif;
    font-size: .9em;
}

h2#tituloapp {
    font-size: 3em;
    margin-bottom: .1em;
}

h2 strong.detalleceleste {
    color: #24c2fc;
}

h2.tituloapp2 {
    padding-right: 2em;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
}

h2.tituloapp2 img {
    padding-top: .3em;
    margin-right: .3em;
    height: auto;
    width: auto;  
}

div.usuario {
    margin: auto;
    text-align: center;
}

div.inicial {
    min-width: 17em;
    margin: auto;
    text-align: center;
}

div.inicial h2 img {
    max-height: 3em;
    padding-top: em;
}

div.inicial div {
    margin-top: 1.5em;
    height: 2.5em;
    width: auto;
    border-radius: .3em;
}

div.inicial div.campotexto {
    margin-top: .5em;
    padding: 0em 1.5em 0em 1.5em;
}

div.inicial div input {
    color: black;
    padding-left: 1em
}

div.inicial div.campotexto input {
    width: 100%;
    padding: .5em .5em .5em .5em;
}

div.inicial div#cuerporegistro div {
    margin-top: 1em;
}

div.inicial form#cuerporegistro input {
    width: 100%;
    text-align: center;
}

div.inicial form button,
div.inicial div a {
    display: block;
    margin: auto;
    margin-top: .5em;
    width: 80%;
    height: 100%;
    text-transform: uppercase;
    font-size: 1.5em;
    background-color: #24c2fc;
    border-radius: .3em;
}

div.inicial form button:hover,
div.inicial div a:hover {
    color: #5a5a5a;
    background-color: white;
    border-color: #24c2fc;
    border-style: solid;
    border-width: thin;
    border-radius: .3em;
}

div.inicial div.registro a {
    display: block;
    margin: auto;
    margin-top: -.8em;
    padding-top: .5em;
    width: 60%;
    height: 100%;
    text-transform: uppercase;
    color: #939393;
    font-size: 1em;
    background-color: #393939;
    border-style: solid;
    border-width: thin;
    border-color: dimgrey;
    border-radius: .3em;
}

div.inicial button.registro {
    display: block;
    margin: auto;
    margin-top: 2em;
    width: 60%;
    height: 20%;
    text-transform: uppercase;
    color: #939393;
    font-size: 1em;
    background-color: #393939;
    border-style: solid;
    border-width: thin;
    border-color: dimgrey;
    border-radius: .3em;
}

div.inicial .registro:hover,
div.inicial .registro a:hover {
    color: #c1c1c1;
    background-color: inherit;
    border-color: #c1c1c1;
    border-radius: .3em;
}

main#mainregistro {
    display: flex;
    flex-direction: column;
}

section#registro div.inicial {
    max-width: 30%;
    margin: auto;
}

section#registro div.inicial form#cuerporegistro {
    margin-bottom: 1em;
}

#registro .inicial #cuerporegistro input#terminos {
    height: 1.5em;
}

section#registro form#cuerporegistro div label {
    margin-bottom: .5em;
}

main#mainregistro section#cartelemer {
    color: skyblue;
    background-color: rgba(37, 201, 106, 0.95);
    font-size: .8em;
    width: 90%;
    padding: 2em 1.5em 2em 1.5em;
    margin: auto;
    text-align: center;
    border-style: double;
    border-color: white;
}

footer {
    color: white;
    padding-left: .75rem;
    font-size: .75em;
    font-style: italic;
}