/**GLOBALES**/

body {
    background-image: url('../assets/fondo.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
}

/**GLOBALES**/

.navbar {
    background-color: transparent;
    padding: 20px;
}

.nav-item .nav-link {
    text-decoration: none;
    font-size: 22px;
}

.btn-outline-light {
    border-radius: 30px;
    padding-left: 25px;
    padding-right: 25px;
    font-weight: bold;
    border-width: 2px;
}

.logo {
    width: 250px;
}

.create-account {
    margin-top: 200px;
    margin-left: 120px;
}

.title-create-account {
    width: 490px;
    font-size: 50px;
    margin-bottom: 20px;
}

.btn-create-account {
    color: #fff;
    background-color: #C82D4D;
    border: none;
    border-radius: 25px;
    width: 300px;
}

.btn-create-account:hover {
    color: #fff;
    background-color: #C82D4D;
    border: none;
    border-radius: 25px;
    width: 300px;
}

.section-download{
    margin-left: 116px;
    margin-top: 250px;
    /**border-bottom: #fff 1.1px solid;**/
}

.title-download{
    color: #fff;
}

.btn-store {
    width: 40%;
    color: #fff;
    min-width: 100px;
    padding: 12px 20px !important;
    border-color: #fff !important;
    margin: 5px;
}
  
.btn-store:focus, 
.btn-store:hover {
    color: #fff !important;
    background-color: transparent;
    border-color: #fff !important;
}
  
.btn-store .btn-label, 
.btn-store .btn-caption {
    display: inline;
    text-align: right;
    line-height: 1;
}

.btn-store .btn-label {
    font-size: 10px;
}

.btn-store .btn-caption {
    font-size: 20px;
}

.info-download{
    color: #fff;
    margin-left: -70px;
    margin-top: 45px;
}

.section-list{
    border-top: #fff 1.1px solid;
    border-bottom: #fff 1.1px solid;
}

.social{
    font-size: 35px;
    letter-spacing: 6px;
}

.help-section{
    margin-left: 120px;
}

/**Modal**/

.modal-login{
    border-radius: 25px;
}

.input-login{
    border-radius: 20px;
}

.access{
    background-color: #C82D4D;
    border: none;
    border-radius: 20px;
}

.access:hover{
    background-color: #C82D4D;
    border: none;
    border-radius: 20px;
}

.no-account{
    color: #898989;
    font-weight: bold;
}

/* Responsive */ 

/* ESCRITORIO GRANDE  (LG REVISAMOS en 1366 en adelante) */

@media (min-width:1200px) {
    
}


/* ESCRITORIO MEDIANO O TABLET HORIZONTAL (MD revisamos en 1024px) */

@media (max-width:1199px) and (min-width:992px) {
    
}


/* ESCRITORIO PEQUEÑO O TABLET VERTICAL (SM revisamos en 768px) */

@media (max-width:991px) and (min-width:768px) {
   
}


/* MOVIL (XS revisamos en 320) */

@media (max-width:767px) {
   
    body {
        background-image: url('../assets/fondo.jpeg');
        background-size: cover;
        background-repeat: repeat-x;
    }

    .logo {
        width: 150px;
    }

    .navbar-toggler-icon {
        color: #fff;
    }

    .create-account {
        margin-top: 30px;
        margin-left: 10px;
    }

    .title-create-account {
        width: 100%;
        font-size: 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .btn-create-account {
        color: #fff;
        background-color: #C82D4D;
        border: none;
        border-radius: 25px;
        width: 150px;
        font-size: 10px;
        margin-left: 30%;
    }

    .btn-create-account:hover {
        color: #fff;
        background-color: #C82D4D;
        border: none;
        border-radius: 25px;
        width: 150px;
        font-size: 10px;
        margin-left: 30%;
    }

    .section-download{
        margin-left: 25px;
        margin-top: 15px;
        /**border-bottom: #fff 1.1px solid;**/
    }
    
    .title-download{
        color: #fff;
        text-align: center;
    }

    .btn-store {
        width: 95%;
        color: #fff;
        min-width: 200px;
        padding: 12px 20px !important;
        border-color: #fff !important;
        margin: 5px;
    }
      
    .btn-store:focus, 
    .btn-store:hover {
        color: #fff !important;
        background-color: transparent;
        border-color: #fff !important;
    }
      
    .btn-store .btn-label, 
    .btn-store .btn-caption {
        display: inline;
        text-align: center;
        line-height: 0.5;
    }
    
    .btn-store .btn-label {
        font-size: 10px;
    }
    
    .btn-store .btn-caption {
        font-size: 20px;
    }
    
    .info-download{
        color: #fff;
        margin-left: 0;
        margin-top: 15px;
        text-align: justify;
        justify-content: center;
    }
    
    .section-list{
        border-top: #fff 1.1px solid;
        border-bottom: #fff 1.1px solid;
    }
    
    .social{
        font-size: 35px;
        letter-spacing: 6px;
        margin-bottom: 0;
    }
    
    .help-section{
        margin-left: 25px;
    }
    
    /**Modal**/
    
    .modal-login{
        border-radius: 25px;
    }
    
    .input-login{
        border-radius: 20px;
    }
    
    .access{
        background-color: #C82D4D;
        border: none;
        border-radius: 20px;
    }
    
    .access:hover{
        background-color: #C82D4D;
        border: none;
        border-radius: 20px;
    }
    
    .no-account{
        color: #898989;
        font-weight: bold;
    }
}