* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'MyriadPro Regular';
}

@font-face {
    font-family: 'MyriadPro Regular';
    src: url('../fonts/MyriadPro-Regular.otf');
}

@font-face {
    font-family: 'NeueMontreal Regular';
    src: url('../fonts/NeueMontreal-Regular.otf');
}

@font-face {
    font-family: 'NeueMontreal Bold';
    src: url('../fonts/NeueMontreal-Bold.otf');
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-image: url('../assets/fondo-landing.png');
    background-size: cover;
    overflow: hidden;
}


/* Bottom Line */

.bottom-line {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20px;
    background-color: #FF6700;
    
}

.error {
    color: #fff;
    font-size: 1rem;
    margin-top: 2px;
    margin-bottom: 8px;
}

/* Whatsapp */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}

.whatsapp-icon {
    margin-top: 16px;
}

/* Mobile media query */

@media screen and (max-width: 768px) {

    .main-container {
        background-image: url('../assets/fondo-landing-mobile.png');
    }

    .bottom-line {
        height: 10px;
    }
}

