/**
* 2007-2025 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-2025 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.
*/

.otp-input {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.otp-cell {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px !important;
    font-weight: bold;
    border: 2px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}

.otp-cell:focus {
    border-color: #4CAF50; /* Green border on focus */
    background-color: #f1f1f1;
}

button {
    margin-top: 20px;
}

#auth_form {
    text-align: center;
    font-size: 16px;
}


i.icon-caret-left {
    display: none;
}


.ps-alert {
    max-width: 600px;
    width: 90%;
    background-color: #f8d7da; /* rojo claro */
    border: 1px solid #f5c6cb; /* borde rojo suave */
    color: #721c24; /* texto rojo oscuro */
    padding: 20px 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 40px auto;
}
.ps-alert h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: bold;
}
.ps-alert p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.4;
}
body.access-denied {
    background: #f5f5f7;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

