diff --git a/client/src/components/ui/Comment/comment.scss b/client/src/components/ui/Comment/comment.scss
index 74f3123669312847cc5ec84e96d02b18916fa222..7be6144e3c099fefc7ef70a727ef6b5e28a50031 100644
--- a/client/src/components/ui/Comment/comment.scss
+++ b/client/src/components/ui/Comment/comment.scss
@@ -67,7 +67,7 @@
 
     textarea {
         transition: none;
-        background: s.$background-input;
+        background: s.$background-light;
         border: none;
         border-radius: 25px;
         width: 100%;
diff --git a/client/src/components/ui/TextInput/text-input.scss b/client/src/components/ui/TextInput/text-input.scss
index ef325f04dfea59dc3d4921bb65d414fe15a2795e..eff9efe0c1447251465dcac67cf9003e58fc5341 100644
--- a/client/src/components/ui/TextInput/text-input.scss
+++ b/client/src/components/ui/TextInput/text-input.scss
@@ -37,23 +37,6 @@
             resize: none;
             height: 300px;
         }
-
-        input,
-        textarea {
-            width: 100%;
-            font-size: 16px;
-            border: none;
-            padding: 20px;
-            outline: none;
-            border-radius: 15px;
-            position: relative;
-            display: block;
-            border-radius: 15px;
-            color: s.$text;
-            font-weight: s.$weight-regular;
-            font-family: s.$body-font;
-            background: s.$background-white;
-        }
     }
 
     .note {
diff --git a/client/src/styles/settings.scss b/client/src/styles/settings.scss
index 20d59225508503e1c0c606455996ecffa7d27e82..9e027a9dde61b38e8222064532ca4bd3484dfeee 100644
--- a/client/src/styles/settings.scss
+++ b/client/src/styles/settings.scss
@@ -7,7 +7,7 @@ $light-colors: (
     'background-dark': #11061A,
     'background-light': #f9f9f9,
     'background-white': #ffffff,
-    'background-input': #f4f4f4,
+    'background-input': #ffffff,
     'background': #EEF5F5,
     'text': #3A5255,
 );