@charset "utf-8";

/* 전체 기본 */
body {
    margin: 0;
    background: #ffffff;
    font-family: "Nanum Gothic", sans-serif;
    color: #333;
}

/* 페이지 중앙 정렬 컨테이너 */
.form-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px;
}

/* 제목 */
.form-title {
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    padding: 20px 0 10px;
    color: #1a237e;
}

/* ★ 견적하기와 동일한 카드 박스 */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;      /* 카드 박스 여백 */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-top: 20px;
}

/* 설명 텍스트 */
.desc {
    font-size: 15px;
    margin-bottom: 25px;
    color: #555;
}

/* 입력 그룹 */
.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 15px;
}

/* 입력박스 */
input[type="text"],
input[type="date"],
input[type="email"],
textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
    background:#fff;
}

textarea {
    resize: vertical;
}

/* 버튼 영역 */
.btn-area {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    background: #1a237e;
    color: #fff;
    padding: 14px 40px;
    font-size: 17px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: 0.2s;
}

.btn-submit:hover {
    background: #303f9f;
}
