@charset "utf-8";
/* CSS Document */
/* 전체 */
body, html {
    margin: 0;
    padding: 0;
    background: #ffffff !important;
    font-family: 'Pretendard', 'NanumGothic', sans-serif;
}

.rq-wrap {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* 제목 */
.rq-title {
    font-size: 24px;
    font-weight: 700;
    color: #1d2c4d;
    margin-bottom: 20px;
    text-align: left;
}

/* 박스 카드 */
.rq-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    box-sizing: border-box;
    width: 100%;
}

/* 입력 행 */
.rq-row {
    margin-bottom: 18px;
}

.rq-row label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.rq-row input,
.rq-row textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 15px;
    background: #ffffff;
}

/* 제출 버튼 */
.rq-submit-wrap {
    text-align: center;
    margin-top: 25px;
}

.rq-submit-btn {
    padding: 12px 28px;
    background: #0054a6;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.rq-submit-btn:hover {
    background: #003f7a;
}

/* 목록 버튼 */
.rq-list-wrap {
    margin-top: 20px;
    text-align: center;
}

.rq-list-btn {
    padding: 10px 22px;
    background: #444;
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
}

.rq-list-btn:hover {
    background: #222;
}


