/**
* 2007-2021 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2021 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

/* LOGIN */
#module-dblogin-login .card-block {
    padding: 32px;
    width: 800px;
    margin: 0 auto;
}
.tabs_login {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}
.tabs_login > * {
    width: 50%;
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #E0E0E0;
    color: var(--font_color);
    font-size: 18px;
}
.tabs_login > *:hover {
    color: var(--font_color);
    border-bottom: 2px solid #939393;
}
.tabs_login > .active {
    border-bottom: 2px solid #939393;
    font-weight: 600;
}
.loginform .login_title {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}
.loginform .row_remember {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.loginform .row_remember > * {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
}
.loginform .row_remember .remember {
    text-decoration: underline;
}
.loginform .btn-primary {
    margin: 24px auto 0;
    display: table;
}

/* REGISTER */
#module-dblogin-register .card-block {
    padding: 32px;
    width: 800px;
    margin: 0 auto;
}
.loginform .separator_name {
    font-size: 18px;
    font-weight: 600;
    margin: 52px 0 20px;
}
.error_postalcode {
    color: #C81D25;
    font-size: 14px;
    margin-top: 4px;
    display: block;
}
.error_postalcode.hidden {
    display: none;
}


/* PASSWORD */
#module-dblogin-password .card-block {
    padding: 32px;
    width: 800px;
    margin: 0 auto;
}
#module-dblogin-password .registro {
    text-align: center;
    margin: 24px 0 0;
}

/* ACCOUNT */
#module-dblogin-account #main .page-content {
    padding: 0;
}
#module-dblogin-account h1 {
    margin-bottom: 12px;
}
#module-dblogin-account .subtitle {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
}

/******** MOBILE *********/
@media (max-width: 991px) {
    #module-dblogin-login #header,
    #module-dblogin-register #header {
        border: 0;
    }
    #header .header_login {
        padding: 30px 0;
    }
    #header .header_login .logo img {
        height: 25px;
        width: auto;
    }
    .dblogin {
        flex-direction: column-reverse;
    }
    .dblogin .loginfeatures,
    .dblogin .loginform {
        width: 100%;
    }
    .dblogin .loginform .buttons_register > div {
        max-width: 50%;
        width: calc(50% - 10px);
    }
    .dblogin .loginform .login_title {
        text-align: center;
    }
}
