/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }

  .container {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .logo {
    width: 100px;
    height: auto;
    margin: 0 auto 20px;
  }

  .brand-name {
    font-size: 48px;
    color: #333;
    margin-bottom: 10px;
  }

  .title {
    font-size: 24px;
    color: #666;
    letter-spacing: 1px;
  }

  .email {
    margin-top: 20px;
    font-size: 18px;
    color: #555;
  }

  /* Estilos para el enlace del email */
  .email a {
    color: #ff7e5f;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s;
  }

  .email a:hover {
    border-bottom: 2px solid #ff7e5f;
  }

  @media (max-width: 768px) {
    .logo {
      width: 80px;
      margin-bottom: 15px;
    }
    .brand-name {
      font-size: 36px;
    }
    .title {
      font-size: 20px;
    }
    .email {
      font-size: 16px;
    }
  }