﻿html, body {
    height: 100%;
    margin: 0;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

/* Fondo en el lado izquierdo */
.comming-soon {
    background: url('../images/bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100%;
    min-height: 100%;
}

.comming-soon:before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.comming-soon-info {
    width: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.comming-soon-inner {
    width: 100%;
    padding: 20px;
    text-align: center;
    color: white;
}

.comming-soon-inner .logo img {
    max-width: 220px;
    height: auto;
    margin-bottom: 40px;
}

.site-info h2 {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    line-height: 1.5em;
}

.site-info h2 span {
    display: block;
    font-weight: 700;
}

.site-info p {
    margin-top: 40px;
    line-height: 1.8em;
    color: #fff;
    font-weight: 300;
}

.contact-form {
    width: 50%;
    background: #66AC53;
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    padding: 40px;
    display: flex;
    align-items: center;
    z-index: 2;
    color: white;
}

.contact-box {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.title {
    text-transform: uppercase;
    font-size: 28px;
    color: #fff;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.contact-box p {
    color: #fff;
    font-weight: 300;
}

.material-icons {
    vertical-align: middle;
    margin-right: 8px;
    color: white;
}

.form-control {
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    padding: 14px;
    margin-bottom: 20px;
    box-shadow: none;
}

.form-control::placeholder {
    color: #fff;
}

.btn-submit {
    background: #E9CC33 !important;
    color: #000 !important;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    padding: 14px 30px 12px;
    transition: all 0.4s;
}

.btn-submit:hover {
    background: #e6b800 !important;
    color: #000 !important;
}

/* Responsive */
@media only screen and (max-width: 1024px) {
    .comming-soon-info,
    .contact-form {
        position: relative;
        width: 100%;
        left: 0;
        padding: 60px 30px;
    }

    .comming-soon-inner .logo img {
        max-width: 180px;
    }
}

@media only screen and (max-width: 480px) {
    .site-info h2 {
        font-size: 22px;
    }

    .title {
        font-size: 20px;
    }

    .contact-box p {
        font-size: 14px;
    }

    .comming-soon-inner .logo img {
        max-width: 140px;
    }
}
