/* 회원 모듈 커스텀 스타일 */

/* 회원가입 페이지 제목과 첫 번째 입력 필드 간격 조정 */
.act-dispMemberSignUpForm h1 {
    margin-bottom: 35px !important;
    padding-bottom: 15px !important;
}

/* 첫 번째 control-group에 상단 여백 추가 */
.act-dispMemberSignUpForm .control-group:first-of-type {
    margin-top: 25px !important;
    padding-top: 10px;
}

/* 폼 전체 간격 조정 */
#fo_insert_member {
    padding-top: 20px;
}

/* 좀 더 넓은 간격을 원할 경우 */
.act-dispMemberSignUpForm .agreement + .control-group {
    margin-top: 40px;
}

/* 반응형 대응 */
@media (max-width: 480px) {
    .act-dispMemberSignUpForm h1 {
        margin-bottom: 25px !important;
        padding-bottom: 10px !important;
    }

    .act-dispMemberSignUpForm .control-group:first-of-type {
        margin-top: 20px !important;
    }

    /* 모바일에서 control-label 스타일 조정 */
    .xm .form-horizontal .control-label {
        float: none !important;
        width: auto !important;
        padding-top: 0 !important;
        text-align: left !important;
        margin-bottom: 5px !important;
        display: block !important;
    }

    /* 모바일에서 controls 영역 조정 */
    .xm .form-horizontal .controls {
        margin-left: 0 !important;
    }

    /* 입력 필드 전체 너비 사용 */
    .xm .form-horizontal input[type="text"],
    .xm .form-horizontal input[type="email"],
    .xm .form-horizontal input[type="password"],
    .xm .form-horizontal select,
    .xm .form-horizontal textarea {
        width: 100% !important;
        height: 30px !important;
        box-sizing: border-box !important;
    }
}
