/* 
Daniel Díaz - Okisam danieldokisam@gmail.com
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
input {
    border-radius: 0;
}

body {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 100vh; 
}
.block_login {
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}
.block_login.adminpanel {
    top: 0;
    bottom: 0;
    transform: none;
    overflow: scroll;
    padding: 50px;
}
.block_login .box_login {
    width: 570px;
    background-color: white;
    box-shadow: 2.5px 4.3px 68px rgba(32, 32, 32, 0.3);
    max-width: calc(100% - 30px);
    margin: auto;
    margin-top: 100px;
    padding: 50px 80px;
    box-sizing: border-box;
    color: black;
    font-family: Quicksand;
}
.block_login .box_login .title_box {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.block_login .box_login .subtitle_box {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.block_login .box_login form {
    margin-top: 20px;
}
.block_login .box_login .nombre,.block_login .box_login .email, .block_login .box_login .mensaje {
    border: 0;
    border-bottom: 1px solid #d1d1d1;
    margin-bottom: 15px;
    max-width: 100%;
    width: 340px;
    color: black;
    font-family: Quicksand;
    font-size: 16px;
    font-weight: 400;
}
.block_login .box_login .condiciones_text {
    color: black;
    font-family: Quicksand;
    font-size: 12px;
    font-weight: 400;
}
.block_login .box_login .enviar {
    color: black;
    font-family: Quicksand;
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid black;
    cursor: pointer;
}
::-webkit-input-placeholder {
    color: black;
    opacity: 1;
}
:-moz-placeholder {
    color: black;
    opacity: 1;
}
::-moz-placeholder {
    color: black;
    opacity: 1;
}
:-ms-input-placeholder {  
    color: black;
    opacity: 1;
}
.enviado {
    background-color: #ddd;
    line-height: 25px;
    margin: 5px 0;
}
img {
    max-width: calc(100% - 30px);
}
@media (max-width: 1100px) {
    .block_login {
        margin-top: 60px;
        padding-bottom: 60px;
        position: static;
        transform: none;
    }
}
@media (max-width: 560px) {
    .block_login .box_login {
        padding: 40px 15px;
    }
}