@charset "utf-8";
/* CSS Document */
@charset "utf-8";

body {
    margin: 0;
    background: #f5f7fa;
    font-family: "Nanum Gothic", sans-serif;
    color: #333;
}

.wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a237e;
}
.page-title span {
    display: block;
    font-size: 15px;
    color: #666;
    margin-top: 6px;
}

/* 상단 카드 메뉴 */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.menu-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 20px 10px;
    text-decoration: none;
    border: 1px solid #dce0e5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: .2s;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.menu-card.active {
    border: 2px solid #1a237e;
}

.menu-card .icon {
    width: 65px;
    margin-bottom: 12px;
}

.menu-card .title {
    font-size: 18px;
    font-weight: 700;
    color: #1a237e;
}
.menu-card .desc {
    font-size: 13px;
    color: #777;
    margin-top: 4px;
}

/* 신청서 영역 */
.form-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

.form-card h2 {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 800;
    color: #1a237e;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="date"],
textarea,
input[type="file"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.tip {
    font-size: 13px;
    color: #777;
    margin-top: 6px;
}

textarea {
    resize: vertical;
}

.btn-area {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    display: inline-block;
    background: #1a237e;
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 17px;
    text-decoration: none;
    font-weight: 700;
    transition: .2s;
}
.btn-submit:hover {
    background: #303f9f;
}

