diff --git a/src/components/common/input/Input.jsx b/src/components/common/input/Input.jsx
new file mode 100644
index 00000000..f215e8af
--- /dev/null
+++ b/src/components/common/input/Input.jsx
@@ -0,0 +1,31 @@
+import styled from "styled-components";
+
+const Input = ({ type, placeholder, id, register, rules }) => {
+ return (
+ <>
+
+ >
+ );
+};
+
+const InputField = styled.input`
+ height: 2.8rem;
+ border-radius: 0.3rem;
+ outline: none;
+ border: none;
+ border: 1.3px solid #216d32;
+ width: 100%;
+ padding-left: 1rem;
+
+ &::placeholder {
+ color: #b3b3b3;
+ }
+`;
+
+export default Input;
diff --git a/src/components/common/input/InputGroup.jsx b/src/components/common/input/InputGroup.jsx
new file mode 100644
index 00000000..e2d99a32
--- /dev/null
+++ b/src/components/common/input/InputGroup.jsx
@@ -0,0 +1,76 @@
+import Input from "./Input";
+import Box from "@/components/register/Box";
+import Label from "@/components/register/Label";
+import AlertMessage from "@/components/register/AlertMessage";
+import DoubleCheck from "@/components/register/DoubleCheck";
+import styled from "styled-components";
+import { DoubleCheckStyle } from "../../register/DoubleCheck";
+
+const InputGroup = ({
+ id,
+ type,
+ label,
+ placeholder,
+ mypage,
+ margin,
+ btn,
+ register,
+ error,
+ rules,
+ doubleCheck,
+ value,
+ onClick,
+}) => {
+ return (
+
+
+
+
+ {doubleCheck && (
+
+ )}
+
+
+ {error && {error?.message}}
+
+ {btn && (
+
+ 변경
+
+ )}
+
+ );
+};
+const InputCss = styled.div`
+ position: relative;
+ display: flex;
+ align-items: center;
+ margin-bottom: 1rem;
+ margin-top: 1rem;
+
+ @media screen and (max-width: 1023px) {
+ width: 100%;
+ }
+`;
+
+const ChangeButton = styled(DoubleCheckStyle)`
+ background-color: #fefefe;
+ color: #216d32;
+ border: 1px solid #216d32;
+ width: 4rem;
+ height: 2rem;
+ position: relative;
+ right: 0.5rem;
+`;
+
+export default InputGroup;
diff --git a/src/components/common/input/SelectInput.jsx b/src/components/common/input/SelectInput.jsx
new file mode 100644
index 00000000..ba5cf1ad
--- /dev/null
+++ b/src/components/common/input/SelectInput.jsx
@@ -0,0 +1,30 @@
+import { useFormContext } from "react-hook-form";
+import { StyledElement } from "@/styles/StyledInput";
+
+const SelectInput = ({ name, id, selected, list }) => {
+ const { register } = useFormContext();
+
+ return (
+
+
+ {list.map((item) => (
+
+ ))}
+
+ );
+};
+
+export default SelectInput;