@media screen and (min-width: 900px) {
/* 整體表單樣式 */

.FT-form span{color:white;}
.FT-form {
    background-color: #835d54;
    margin: 0 auto 15vw;
    width: 64%;
    padding: 4%;
    max-width: 1400px;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* 標籤樣式 */
.FT-label {
   display: block;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Noto Sans', sans-serif;
    width: 14%;
}

/* 表單組樣式 */
.FT-form-group {
    display: flex;
    gap: 15px;
}

/* 輸入欄位、選擇欄位及文本區域樣式 */
.FT-input, .FT-select, .FT-textarea {
    width: 80%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #fff;
    background: white;
    color: #835d54;
    font-size: 16px;
    margin-bottom: 20px;
}

/* 文字輸入欄位與選擇欄位的額外樣式 */
.FT-input, .FT-select {
   
    background: white;
}

/* 提交按鈕樣式 */
      .FT-submit {
        background-color: #fff;
        color: #8B5E3C;
        font-size: 16px;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        width: 23%;
        left: 15.5%;
        position: relative;
    }

/* 提交按鈕 hover 效果 */
.FT-submit:hover {
    background-color: #ccc;
}


.nameFT-input{width:30%;}
.nameFT-select{width:10%; color: #835d54;}
.contactFT-select{width:40%;}
}

@media screen and (max-width: 900px) {

/* 整體表單樣式 */

.FT-form span{color:white;}
.FT-form {
            background-color: #835d54;
        margin: 0 auto 15vw;
        width: 100vw;
        padding: 15% 4%;
        max-width: 1400px;
        height: 78vh;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: flex-start;
        box-sizing: border-box;
    
}

/* 標籤樣式 */
.FT-label {
   display: block;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Noto Sans', sans-serif;
    width: 90%;
}

/* 表單組樣式 */
.FT-form-group {
 display: flex;
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
}

/* 輸入欄位、選擇欄位及文本區域樣式 */
.FT-input, .FT-select, .FT-textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #fff;
    background: white;
    color: #835d54;
    font-size: 16px;
    margin-bottom: 20px;
}

/* 文字輸入欄位與選擇欄位的額外樣式 */
.FT-input, .FT-select {
   
    background: white;
}

/* 提交按鈕樣式 */
.FT-submit {
   background-color: #fff;
    color: #8B5E3C;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    width: 70%;
    position: relative;
}

/* 提交按鈕 hover 效果 */
.FT-submit:hover {
    background-color: #ccc;
}


.nameFT-input{width:45%;}
.nameFT-select{        width: 18%;
        color: #835d54;
        position: relative;
        left: 4%;
    }
.contactFT-select{width:100%;}
}

    



