@charset "utf-8";
/* CSS Document */
@charset "utf-8";
body {
    margin: 0;
    background: #ffffff;
    font-family: "Nanum Gothic", sans-serif;
    color: #333;
}

.wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    padding: 20px 0 10px;
    color: #1a237e;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.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;
}

.form-group span {
    font-weight: normal;
    color: #777;
}

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;
}

textarea {
    resize: vertical;
}

.checkbox-area {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px 0;
}

.checkbox-area label {
    font-size: 14px;
}

.tip {
    font-size: 13px;
    color: #777;
    margin-top: 5px;
}

.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;
}


