﻿/*Reset HTML*/
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;
}

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;
}
/*Reset HTML*/

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    box-sizing: border-box;
    margin: 0;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content {
    width: 100%;
    height: 100%;
    max-width: 1200px; 
    padding: 2rem 1.5rem;
    color: white;
}

.main-content > div {
    width: 100%;
    height: 100vh;
    max-width: 1200px; 
}

.container__image {
    width: 100%;
    display: flex;
    justify-content: center;
}

#imagen__logo {
    width: 300px;
}

#btnSubmit {
    background-color: rgb(255, 25, 25);
    width: 100%;
    height: 50px;
    border: none;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.btnSubmit__span {
    transition: .4s ease-in-out all;
    position: absolute;
    left: 35%;
    
}

.btnSubmit__icono {
    display: flex;
    align-items: center;
}

.btnSubmit__icono svg {
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 2;
    left: -40px;
    transition: .3s ease-in-out all;
    opacity: 0;
}

#btnSubmit:hover .btnSubmit__icono svg, #btnSubmit:active .btnSubmit__icono svg {
    left: calc(100% - 50px);
    opacity: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

#btnSubmit:hover, #btnSubmit:active {
    border-radius: 10px
}

#btnSubmit:hover .btnSubmit__span, #btnSubmit:active .btnSubmit__span {
    left: 20px
}

@media (max-width: 576px) {
    #imagen__logo {
        width: 200px;
        display: flex;
        justify-content: center;
        align-content: center;
    }

    .container__input--fontsize {
        font-size: 1.2rem;
    }

    .container__input--fontsize::before {
        font-size: 20px
    }

    
}
