@charset "utf-8";
/* CSS Document */

body {
    font-family: 'Malgun Gothic', Arial, sans-serif;
    background:#fff;
    margin:0;
    padding:0;
}

.container {
    max-width:900px;
    margin:30px auto;
    background:#ffffff;
    padding:30px;
    border-radius:10px;

    /* 🔑 핵심 */
    border:1px solid #e3e6ef;
    box-shadow:
        0 4px 14px rgba(0,0,0,0.08),
        0 1px 3px rgba(0,0,0,0.05);
}

h2 {
    font-size:22px;
    border-left:5px solid #2c5cc5;
    padding-left:12px;
    margin-bottom:25px;
}

table {
    width:100%;
    border-collapse:collapse;
}

th, td {
    padding:12px 10px;
    border-bottom:1px solid #e1e1e1;
    font-size:14px;
}

th {
    width:180px;
    background:#f3f6fb;
    text-align:left;
    vertical-align:top;
}

input[type=text],
input[type=email],
select,
textarea {
    width:95%;
    padding:7px;
    border:1px solid #ccc;
    border-radius:4px;
}

textarea {
    height:100px;
    resize:vertical;
}

.radio-group label {
    margin-right:15px;
    white-space:nowrap;
}

.btn-area {
    text-align:center;
    margin-top:30px;
}

.btn-submit {
    padding:14px 45px;
    font-size:16px;
    background:#2c5cc5;
    color:#ffffff;
    border:none;
    border-radius:5px;
    cursor:pointer;
}

.btn-submit:hover {
    background:#1f4aa3;
}

.notice {
    font-size:13px;
    color:#555;
    margin-top:25px;
    background:#f9f9f9;
    padding:15px;
    border-radius:5px;
}

input[type=file] {
    font-size:13px;
}

