body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.waring_text {
    margin: auto;
    margin-top: 2%;
    width: 90%;
    text-align: right;
    font-size: 14px;
}

form {
    padding: 0 5% 5% 5%;
}

.list {
    margin-bottom: 10%;
}

.list p{
    font-size: 14px;
}

form input {
    border: none;
    /* 先移除所有邊框 */
    border-bottom: 1px solid rgba(53, 198, 90);
    /* 添加底部 1px 黑色實線框線 */
    outline: none;
    /* 移除預設的輸入框線 */
    width: 95%;
    font-size: 14px;
}

form .car_list {
    width: 95%;
    display: flex;
    justify-content: space-between;
    /* padding: 20px; */
    /* background-color: #e8f5e9; */
    margin-top: 5%;
    margin-bottom: 5%;
}

form select {
    width: 45%;
    padding: 3% 0% 3% 0%;
    border: 2px solid rgba(53, 198, 90);
    font-size: 14px;
}

.list button {
    background-color: rgba(53, 198, 90);
    color: white;
    padding: 5%;
    border: 0;
    border-radius: 30px;
    width: 35%;
    font-size: 18px;
}