/* base.css：全站基礎排版 / card / 標題 */

body {
    font-family: 'PingFang TC', 'Microsoft JhengHei', sans-serif;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    padding: 15px;
  }
  
  .card {
    position: relative;
    background: white;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 460px;
  }
  
  .logo-header {
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }
  
  .logo-header img {
    width: 160px;
    height: auto;
  }
  
  h2 {
    color: #ff4500;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 5px;
    font-size: 22px;
  }