.register-section-container { padding: 60px 0px; background: #fff; width:100%; }

.register-section { /* width:1200px; */ max-width:1240px; padding:0px 20px;
  margin:0 auto;
 
}

.form-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid #0a2540;
  padding-bottom: 8px;
  color: #0a2540;
}

.register-form {
  max-width: 100%;
  margin: 0 auto;
}
.required {
  color: red;
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px 30px;
  margin-bottom: 40px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #222;
}

.required {
  color: red;
  margin-left: 4px;
  font-size: 13px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.phone-group .phone-split {
  display: flex;
  gap: 8px;
}

.phone-split input {
  width: 100%;
}

.agree-section {
  /* display: flex; */
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 30px;  color:#0a2540;
}

.agree-detail {
  color: #0072c6;
  font-weight: 500;
  text-decoration: underline; cursor:pointer;
  font-size: 13px;
}

.modal {
    display: none; /* Æò¼Ò¿¡´Â ¼û±è */
    position: fixed; /* È­¸é ÀüÃ¼¿¡ °íÁ¤ */
    z-index: 2000; /* °¡Àå À§¿¡ ¿Àµµ·Ï */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* ¹ÝÅõ¸í °ËÀº»ö ¹è°æ */
    /* ÆË¾÷ ³»¿ë¹°À» Áß¾Ó¿¡ ¿Àµµ·Ï flex »ç¿ë */
    justify-content: center;
    align-items: center;
}

/* ÆË¾÷ ³»¿ë¹° (Èò»ö ¹Ú½º) */
.modal-content {
    background-color: #fff;
    color: #333;
    padding: 30px 40px;
    border-radius: 8px;
    position: relative; /* ´Ý±â ¹öÆ°ÀÇ ±âÁØÁ¡ */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    width: 90%; /* ¸ð¹ÙÀÏ È­¸é¿¡ ¸Â°Ô ³Êºñ Á¶Á¤ */
    max-width: 500px; /* PC¿¡¼­´Â ÃÖ´ë ³Êºñ 500px */
}

/* ´Ý±â ¹öÆ° (X) */
.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-button:hover,
.close-button:focus {
    color: #000;
}


/* --- ÆË¾÷ ³»ºÎ Æû ½ºÅ¸ÀÏ --- */
.modal-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.modal-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.6;
	font-weight:600;
}

#checkForm .form-group {
    margin-bottom: 15px;
    text-align: left;
}

#checkForm label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #444;
}

#checkForm input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box; /* paddingÀ» Æ÷ÇÔÇÏ¿© ³Êºñ °è»ê */
}

.modal-submit-btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
   background: linear-gradient(90deg, #4a69bd, #6a82fb);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-submit-btn:hover {
    background-color: #335d88;
}
#resultMessage {
    white-space: pre-line; /* ÀÌ ÇÑ ÁÙÀÌ ÇÙ½ÉÀÔ´Ï´Ù! */
}

.submit-button { display: block;
  width: auto;     border: none;
    background: none;
  margin: 0 auto;

  cursor: pointer;}
#agreebox {line-height: 1.4;height: 230px; clear:both; overflow:auto; border: 1px solid #CCC; padding:20px; font-size: 16px; margin-top:20px;     border-radius: 8px;}

.agenda-section-container {width:100%; padding: 80px 0px; background: url(../images/back-blur.png);
    background-size: cover;}



/* ================== ¹ÝÀÀÇü (µî·Ï Æû) ================== */

/* ÅÂºí¸´ »çÀÌÁî (1024px ÀÌÇÏ) */
@media (max-width: 1024px) {
    .form-grid {
        /* 3´Ü ±×¸®µå¸¦ 2´ÜÀ¸·Î º¯°æ */
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px; /* ÁÂ¿ì °£°Ý »ìÂ¦ ÁÙÀÓ */
    }
}


/* ¸ð¹ÙÀÏ »çÀÌÁî (768px ÀÌÇÏ) */
@media (max-width: 768px) {
    .register-section-container {
        /* À§¾Æ·¡ ¿©¹éÀ» ÁÙ¿© ¸ð¹ÙÀÏ¿¡ ¸Â°Ô Á¶Á¤ */
        padding: 40px 0px;
    }

    .form-grid {
        /* 2´Ü ±×¸®µå¸¦ 1´ÜÀ¸·Î º¯°æÇÏ¿© ¼¼·Î·Î ½×ÀÌµµ·Ï ÇÔ */
        grid-template-columns: 1fr;
    }

    .form-title {
        /* Á¦¸ñ ÆùÆ® Å©±â Á¶Á¤ */
        font-size: 16px;
    }

    .form-group label,
    .form-group input[type="text"],
    .form-group input[type="email"] {
        /* Æû °ü·Ã ÆùÆ® Å©±â Á¶Á¤ */
        font-size: 13px;
    }

    .agree-section {
        /* µ¿ÀÇ ¼½¼Ç ÆùÆ® Å©±â Á¶Á¤ */
        font-size: 13px;
    }
    
    #agreebox {
        /* µ¿ÀÇ¼­ ³»¿ë ¹Ú½º ÆùÆ® Å©±â ¹× ¿©¹é Á¶Á¤ */
        padding: 15px;
        font-size: 14px;
    }
}