/* =========================================================
   style.css - NT Professional
   สีหลัก: เหลือง (#fccd00), ดำ (#1a1a1a), เทา (#fff700)
   ========================================================= */

/* ===============================
   ตัวแปรสี (CSS Variables)
   =============================== */
:root {
    --nt-yellow: #fccd00;       /* สีเหลืองหลัก NT */
    --nt-dark: #1a1a1a;         /* สีดำเข้ม */
    --nt-light-gray: #fff700;   /* สีเทาอ่อนสำหรับพื้นหลัง */
    --nt-muted: #666666;        /* สีเทากลางสำหรับข้อความรอง */
    --nt-card-bg: #ffffff;      /* สีพื้นหลังกล่อง */
    --nt-border: #e0e0e0;       /* สีเส้นขอบอ่อน */
}

/* ===============================nu
   Reset และการตั้งค่าเบื้องต้น
   =============================== */
* {     
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: var(--nt-light-gray);
    color: var(--nt-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* ===============================
   กล่องหลัก / Login Box
   =============================== */
.box,
.login-box {
    background: var(--nt-card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.box:hover,
.login-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* ===============================
   อินพุต (Inputs)
   =============================== */
input[type="text"], 
input[type="password"], 
input[type="file"] {
    margin: 12px 0;
    padding: 12px;
    width: 250px;
    border: 1px solid var(--nt-border);
    border-radius: 8px;
    font-size: 15px;
    transition: border 0.2s, box-shadow 0.2s;
}

input:focus {
    outline: none;
    border: 1px solid var(--nt-yellow);
    box-shadow: 0 0 6px rgba(252,205,0,0.6);
}

/* ===============================
   ปุ่ม (Buttons)
   =============================== */
button {
    padding: 12px 24px;
    background: var(--nt-yellow);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    color: var(--nt-dark);
    transition: background 0.2s ease, transform 0.1s ease;
}

button:hover {
    background: #e6b800;
    transform: scale(1.05);
}

button:active {
    transform: scale(0.98);
}

/* ===============================
   ลิงก์ (Links)
   =============================== */
a {
    display: inline-block;
    margin-top: 14px;
    text-decoration: none;
    color: var(--nt-muted);
    font-size: 14px;
    transition: color 0.2s;
}

a:hover {
    color: var(--nt-dark);
}

/* ===============================
   หัวข้อ (Headings)
   =============================== */
h1, h2 {
    margin-bottom: 20px;
    color: var(--nt-dark);
    font-weight: bold;
}
