@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(42, 213, 62, 1) 0%, rgba(0, 202, 255, 1) 100%);
    background-size: cover;
    /* ทำให้ภาพครอบคลุมทั้งหน้าจอ */
    background-position: center;
    /* จัดตำแหน่งภาพไว้ตรงกลาง */
    background-repeat: no-repeat;
    /* ไม่ให้ภาพซ้ำ */


    display: flex;
    /* กำหนดให้ใช้ Flexbox ในการจัดวางเนื้อหา */
    flex-direction: column;
    /* จัดเรียงเนื้อหาในแนวตั้ง */
    align-items: center;
    /* จัดวางเนื้อหาให้อยู่ตรงกลางในแนวนอน */
    justify-content: center;
    /* จัดวางเนื้อหาให้อยู่ตรงกลางในแนวตั้ง */
    min-height: 225vh;
    /* กำหนดความสูงขั้นต่ำของ body ให้เต็ม 100% ของ viewport height */
    margin: 0;
    /* เอาขอบของ body ออกทั้งหมด */
}

.form_card {
    width: 680px;
    background-color: rgb(255, 255, 255);
    padding: 10px;
    border-radius: 15px;
}

.social-box-part-two {
    border: 1px solid rgb(225, 217, 217);
    border-radius: 10px;
    padding: 5px;
}

.spacer {
    margin-top: 37px;
}

.size_font{
    font-size: 12px;
}

select {
    border-color: rgb(182, 190, 190);
}

.text-size {
    font-size: 15px;
}

.form-check-label {
    color: rgb(104, 104, 104);
}

.form-check {
    padding-left: 50px;
}

.form-check-input[type="radio"] {
    border-color: cornflowerblue;
}

input[type="text"] {
    border-color: cornflowerblue;
}

input[type="date"] {
    border-color: cornflowerblue;
}

input[type="tel"] {
    border-color: cornflowerblue;
}

input[type="email"] {
    border-color: cornflowerblue;
}

input[type="url"] {
    border-color: cornflowerblue;
}






input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 490px) {
    .form_card {
        width: 450px;
        background-color: rgb(255, 255, 255);
        padding: 10px;
        border-radius: 15px;
    }

    .img-mobile{
        width: 250px;
    }

    .spacer {
        margin-top: 10px;
    }

    .fixed-footer {
        /* position: fixed;
        bottom: 0; */
        width: 100%;
        z-index: 1000;
        font-size: 15px;
        /* เพื่อให้แน่ใจว่าจะอยู่เหนือเนื้อหาอื่น */
    }
    
    .footer {
        /* คุณสามารถเปลี่ยนสีพื้นหลังตามต้องการ */
        /* box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); */
        /* เพิ่มเงาที่ด้านบน */
    }


}