diff --git a/lib/appLocalization/language_key.dart b/lib/appLocalization/language_key.dart
index 76a296233337afffdb66ce6199b8c6d9f6cedf27..56ae0da5fd6f4b81ad6d11bacd1b9f24ed8cbb78 100644
--- a/lib/appLocalization/language_key.dart
+++ b/lib/appLocalization/language_key.dart
@@ -1,3 +1,14 @@
 
 const String message = "message";
-const String name = "name";
\ No newline at end of file
+const String name = "name";
+
+///Verify otp texts
+const String otpTitle = "otpTitle";
+const String otpSubTitle = "otpSubTitle";
+const String enterOtp = "enterOtp";
+const String resendOtp = "resendOtp";
+const String verify = "verify";
+const String back = "back";
+const String verifySuccessTitle = "verifySuccessTitle";
+const String verifySuccessSubTitle = "verifySuccessSubTitle";
+const String seconds = "seconds";
\ No newline at end of file
diff --git a/lib/appLocalization/languages.dart b/lib/appLocalization/languages.dart
index 4da92007863555fcc304dc1e064185a3fa12dff3..0c3942d2076306cc353e86b2c10c94c03201e55d 100644
--- a/lib/appLocalization/languages.dart
+++ b/lib/appLocalization/languages.dart
@@ -12,12 +12,34 @@ class Languages extends Translations {
   /// English language constants
   Map<String, String> englishConstants = {
     message: "What is the project name?",
-    name: "Exide CRR"
+    name: "Exide CRR",
+
+    ///Verify otp screen
+    otpTitle:"Verify OTP",
+    otpSubTitle:"Please verify the OTP which have been sent your registered mobile number.",
+    enterOtp:"Enter OTP",
+    resendOtp: "Resend OTP in ",
+    seconds: "seconds.",
+    verify: "Verify",
+    back: "Back",
+    verifySuccessTitle:"Verification Successful",
+    verifySuccessSubTitle:"You have verified your OTP successfully."
   };
 
   /// Hindi language constants
   Map<String, String> hindiConstants = {
     message: "प्रोजेक्ट का नाम क्या है?",
-    name: "एक्साइड सीआरआर"
+    name: "एक्साइड सीआरआर",
+
+    ///Verify otp screen
+    otpTitle:"ओटीपी सत्यापित करें",
+    otpSubTitle:"कृपया उस ओटीपी को सत्यापित करें जो आपके पंजीकृत मोबाइल नंबर पर भेजा गया है।",
+    enterOtp:"ओटीपी दर्ज करें",
+    resendOtp:"ओटीपी दोबारा भेजें",
+    seconds:"सेकंड में ",
+    verify: "सत्यापित करें",
+    back: "पीछे",
+    verifySuccessTitle:"सत्यापन सफल",
+    verifySuccessSubTitle:"आपने अपना ओटीपी सफलतापूर्वक सत्यापित कर लिया है।"
   };
 }
\ No newline at end of file
diff --git a/lib/res/app_color_text_size.dart b/lib/res/app_color_text_size.dart
index 20f6dd92fefcedf36da10fcac6cbae69ef488bfc..5476924b4c7c3ef71979390d8d115eef09938c12 100644
--- a/lib/res/app_color_text_size.dart
+++ b/lib/res/app_color_text_size.dart
@@ -33,7 +33,8 @@ class AppColor {
   static const textFieldHintColor = Color(0xff9B9B9B);
   static const primarySecColor = Color(0xFF3A88F4);
   static Color redLight = const Color(0xffFF1717);
-  static const inActiveButtonColor = Color(0xff808080);
+  static const inActiveButtonColor = Color(0xffF9BBBF);
+  static const slateGray = Color(0xff454A4F);
 
   static const MaterialColor primaryColorSwatch =
   MaterialColor(primaryColorHexValue, <int, Color>{
diff --git a/lib/routes/routes_name.dart b/lib/routes/routes_name.dart
index 4072a396a3550ce7644dc5dbbbd7e433ad2d9949..0ab593b9ea1108ce1695e2481ac4a80fa2915d91 100644
--- a/lib/routes/routes_name.dart
+++ b/lib/routes/routes_name.dart
@@ -4,5 +4,6 @@ class RoutesName {
   static const String splashScreen = "/";
   static const String loginScreen = "/login";
   static const String homeScreen = "/home";
+  static const String verifyOtp = "/verifyOtp";
 
 }
\ No newline at end of file