@import url('https://fonts.googleapis.com/css2?family=Anuphan:wght@100..700&display=swap');
*{
    color:white;
    font-family: "Anuphan", sans-serif;
    font-weight: bold;
}

body 
{
    background-color: #141517;
}

.card
{
    color:white;
    background-color: #202124;
    padding: 15px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.form-control {
    background-color: #141517 !important;
    color: white !important;
    border: solid 2px #8acaff !important; /* เพิ่มเส้นขอบสีฟ้า */
    border-radius: 5px; /* ทำให้ขอบมนเล็กน้อย */
}

/* ป้องกันสีพื้นหลังตอน focus */
.form-control:focus {
    background-color: #141517 !important;
    color: white !important;
    border: solid 2px #8acaff !important;
    outline: none;
}

.card-header img {
    max-width: 150px; /* ปรับขนาดโลโก้ */
    display: block;
    margin: 0 auto; /* จัดให้อยู่ตรงกลาง */
}

.btn {
    background-color: #8acaff;
    color: black;
    font-weight: bold;
    width: 100%; /* ปรับให้กว้างเต็มฟอร์ม */
    text-align: center; /* จัดข้อความให้อยู่ตรงกลาง */
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-top: 10px; /* ระยะห่างจากฟอร์ม */
}



