/*Pagina de Iniciar  Sesion  cuando presionas el inicio Devoluciones y pedidos*/
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;    
    display: flex;
    flex-direction: column;
    align-items: center;
  } 
  
  /* Logo */
.nav-logo {
  padding: 40px 20px;
  font-size: 26px;
  font-weight: bold;
  color: black;
  cursor: pointer;
  margin-left: -10px; /* Ajuste para centrar el logo */
}
.nav-logo span {
  color: #f08804; /* Color del logo */
}
  
  .login-box {
    border: 1px solid #ddd;
    padding: 24px;
    max-width: 350px;
    width: 100%;
    border-radius: 4px;
  }
  
  .login-box h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  label {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
  }
  
  input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #a6a6a6;
    border-radius: 4px;
    font-size: 14px;
  }
  
  .continue-btn {
    background-color: #ffd814;
    border: 1px solid #fcd200;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
  }
  
  .terms {
    font-size: 12px;
    margin-top: 14px;
  }
  
  .terms a {
    color:#0066c0;
  }
  
  .help-toggle {
    margin-top: 20px;
    font-size: 14px;
    color: #0066c0;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  
  .help-toggle i {
    margin-right: 6px;
    transition: transform 0.2s ease;
  }
  
  .help-content {
    display: none;
    font-size: 14px;
    margin-top: 10px;
    margin-left: 20px;
  }
  
  .help-content p {
    color: #0066c0;
  }
  
  .separator {
    text-align: center;
    margin: 30px 0 16px;
    position: relative;
  }
  
  .separator::before,
  .separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #ccc;
  }
  
  .separator::before { left: 0; }
  .separator::after { right: 0; }
  
  .new-account-btn {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #bbbbbb;
    padding: 10px 20px;
    text-align: center;
    width: 23%;
    border-radius: 4px;
    font-weight: bold;
    color: #111;
    text-decoration: none; /* Quitar subrayado */
    cursor: pointer;
  }
  
  
  
  
  .new-to-amazon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 20px;
    color: #555;
    font-size: 14px;
  }
  
  .new-to-amazon .line {
    flex: 1;
    height: 1px;
    background-color: #ccc;
    margin: 0 10px;
  }

  
  
  .footer {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    color: #555;
  }
  
  .footer a {
    color: #0066c0;
    margin: 0 5px;
    text-decoration: none;
  }
  
  .footer .divider {
    margin: 20px auto;
    height: 1px;
    background-color: #ddd;
    width: 90%;
  }
  
  /* Línea gris larga debajo */
  .bottom-separator {
    border: none;
    height: 1px;
    background-color: #ccc;
    margin: 40px 0 20px;
    width: 100%;
  }