﻿/* 原 <body> 之 margin 設定改為 CSS（取代 bottom/left/top/rightmargin 舊屬性） */
/*ok*/
html, body {
    margin: 0;
}

/* 版面結構與背景（取代 table 的 presentational 屬性與 background） */
/*ok*/
.login-outer {
    width: 240px;
    border-collapse: collapse;
    margin: 0;
    border: 0;
}

.bg-login {
    background-image: url("images/bg.gif");
    background-repeat: repeat;
}



.login-middle {
    height: 200px;
}

.bg-login-mid {
    background-image: url("images/l-t03-2.gif");
    background-repeat: repeat;
}

/* 內層表格取代 width/align/cellspacing/cellpadding */
.login-inner {
    width: 85%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 5px; /* 原 cellspacing="5" */
}

.login-actions {
    border-spacing: 2px; /* 原 cellspacing="2" */
}

/* 通用工具類別（取代 inline style） */
.nowrap {
    white-space: nowrap;
}

.no-underline {
    text-decoration: none;
}

.cursor-pointer {
    cursor: pointer;
}

.text-center {
    text-align: center;
}

/* 尺寸工具（取代 Height/Width 造成的 inline style 輸出） */
.h20 {
    height: 20px;
}

.w132 {
    width: 132px;
}

/* 你原本就有的類別，可繼續沿用（示例） */
