/* ==== Import Fonts ==== */
@font-face {
    font-family: 'BetterTogether';
    src: url('https://betflixth.site/assets/BetterTogether-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BetterTogether';
    src: url('https://betflixth.site/assets/BetterTogether-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BetterTogether';
    src: url('https://betflixth.site/assets/BetterTogether-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/* ตัดสไตล์ปุ่มพื้นฐาน */
#btnResend{
    border: none;            /* ไม่มีขอบ */
    outline: none;           /* ไม่มีเส้นขอบตอนโฟกัส (เดิม) */
    box-shadow: none;        /* ไม่มีเงา */
    -webkit-appearance: none;
    appearance: none;
    background: transparent; /* ให้เหมือนลิงก์/ตัวหนังสือ */
    padding: 0;
    color: #003828;
    cursor: pointer;
    text-decoration: underline;
}
/* ทำ focus แบบมองเห็นได้แทน outline เดิม (ยังเข้าถึงได้ดี) */
#btnResend:focus-visible{
    outline: 2px solid #2563eb55;
    border-radius: 4px;
}
/* ตอน disabled ให้ดูคลิกไม่ได้ */
#btnResend:disabled{
    opacity: .5;
    cursor: not-allowed;
    text-decoration: none;
}