/* 
    Document   : enigma.css
    Created on : 15-oct-2015, 12:37:19
    Author     : joaquin
    Description:
        Hoja de estilos para enigma.
*/

root { 
    display: block;
}

body {
    background-color: #f5f5E1;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 0 0 0;
    border-top:  5px solid #f0f0d2;
    border-left: 5px solid #f0f0d2;
    border-bottom: 5px solid #f0f0d2;
    border-right: 5px solid #f0f0d2;
    border-radius: 10px;
    padding: 5px;
}

@media screen and (min-width: 800px) {
    /*
    Diseño adaptativo (responsive):
    ===============================
    Si es una pantalla mediana, utiliza el 80% central.
    */
    body {
        margin: 0 10% 0 10%;
    }
}

@media screen and (min-width: 1200px) {
    /*
    Si es una pantalla ancha, utiliza el 56% central.
    */
    body {
        margin: 0 22% 0 22%;
    }
}

.Cabecera {
    border-radius: 8px;
    background-color: #f0f0d2;
    margin: 0 0 0 0px;
    width: 100%;
    height: 35px;
}
.Pie {
    border-radius: 8px;
    background-color: #f0f0d2;
    margin: 0 0 0 0px;
    width: 100%;
    height: 35px;
    text-align: center;
    font-size: small;
}
.Boton {
    background-color: #f0f0d2;
    font-weight:bold;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 8px; 
    border-radius: 8px;
    font-family: Verdana, Geneva, sans-serif;
    font-weight: bolder;
    color: #0000aa;
    text-transform: uppercase;
}
.Boton_p {
    background-color: #f0f0d2;
    font-weight:bold;
    margin-top: 2px;
    margin-bottom: 2px;
    padding: 2px; 
    border-radius: 8px;
    font-family: Verdana, Geneva, sans-serif;
    font-weight: bolder;
    color: #0000aa;
}

#Version{
    font-size: x-small;
    float: right;
    text-align: right;
    margin-top: 18px;
    margin-right: 4px;
}
#Clave{
    border-radius: 8px;
}
#TextoNormal{
    border-radius: 8px;
    width: 100%;
}
#TextoEncriptado{
    border-radius: 8px;
    width: 100%;
}
#ImagenLogo{
    font-family: Arial, Helvetica, sans-serif;
    font-size: x-large;
    font-weight: bolder;
    vertical-align: top;
    float: left;
}

#Instrucciones {
    text-align: justify;
    font-size: small;
    padding: 0px 5px 0px 5px;
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    border-left: 1px solid #000000;
    border-radius: 8px;
}

#Titulo{
    vertical-align: 25%;
    margin-left: 10px;
}
.mensajes{
    /*color:blue; */
    font-size:small; 
    font-family:arial; 
    font-weight:bold; 
    text-align:center;
    margin: 5px 0 0 0;
    border-top:  5px solid #f0f0d2;
    border-left: 5px solid #f0f0d2;
    border-bottom: 5px solid #f0f0d2;
    border-right: 5px solid #f0f0d2;
    border-radius: 8px;
    height: fit-content;
    min-height: 1.1em;
}
.etiqueta{
    font-size:small; 
    font-family:arial; 
    font-weight:bold; 
    text-align:left;
    margin: 5px 0 0 0;
}

.imagen_ejemplo{
    float: left;
    width: 50%;
    text-indent: 4em;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 2%;
    border-top:  5px solid #000000;
    border-left: 5px solid #000000;
    border-bottom: 5px solid #000000;
    border-right: 5px solid #000000;
    border-radius: 8px;
}

.texto_imagen_ejemplo {
    width:available;
    text-align:justify;
    font-size: small;
    margin: 0 auto;
    text-indent: 4%;  
}

p{
    text-indent: 4%;  
}

textarea{
    overflow:auto;
    resize: none;
    width: available;
}
