<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    android:background="@color/backgroundColor"
    android:orientation="vertical"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".account.PhoneLoginFragment">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_arrow_back"
            android:layout_margin="@dimen/_20sdp"/>
        <TextView
            android:fontFamily="@font/calibrid"
            android:layout_marginLeft="@dimen/_15sdp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Please Enter Your"
            android:textColor="@color/textColor"
            android:textSize="35dp"
            android:textStyle="bold" />
        <LinearLayout
            android:gravity="center"
            android:layout_marginLeft="@dimen/_15sdp"
            android:layout_marginTop="-10dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            <ImageView
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:src="@drawable/ic_whatsapp"/>
            <TextView
                android:layout_marginLeft="@dimen/_8sdp"
                android:fontFamily="@font/calibrid"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Whatsapp Number"
                android:textColor="@color/textColor"
                android:textSize="35dp"
                android:textStyle="bold" />

        </LinearLayout>
        <TextView
            android:fontFamily="@font/calibrid"
            android:layout_marginTop="@dimen/_20sdp"
            android:layout_marginLeft="@dimen/_15sdp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Tap Continue to get conformation OTP on entered phone number, We would like your phone number"
            android:textColor="@color/gray_darl"
            android:textSize="15dp"
            android:textStyle="normal" />
        <TextView
            android:fontFamily="@font/calibrid"
            android:layout_marginTop="@dimen/_50sdp"
            android:layout_marginLeft="@dimen/_15sdp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Country Code"
            android:textColor="@color/gray_darl"
            android:textSize="14dp"
            android:textStyle="normal" />
        <LinearLayout
            android:layout_marginTop="3dp"
            android:layout_marginHorizontal="@dimen/_18sdp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            <TextView
                android:fontFamily="@font/calibrid"
                android:drawableRight="@drawable/arrow_down"
                android:id="@+id/countryCode"
                android:layout_width="@dimen/_80sdp"
                android:layout_height="wrap_content"
                android:text="+91"
                android:textSize="@dimen/_20sdp"
                android:textColor="@color/textColor"/>
            <EditText
                android:background="@color/transparent"
                android:fontFamily="@font/calibrid"
                android:layout_marginLeft="@dimen/_20sdp"
                android:id="@+id/numberEt"
                android:imeOptions="actionGo"
                android:inputType="number"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="@string/number"
                android:maxLength="10"
                android:textSize="@dimen/_20sdp"
                android:textColor="@color/textColor"/>
        </LinearLayout>
        <LinearLayout
            android:layout_marginTop="@dimen/_5sdp"
            android:layout_marginHorizontal="@dimen/_20sdp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            <View
                android:layout_width="@dimen/_80sdp"
                android:layout_height="2dp"
                android:background="@drawable/rounded_bg"
                android:backgroundTint="@color/textColor"/>
            <View
                android:layout_marginLeft="@dimen/_20sdp"
                android:layout_width="match_parent"
                android:layout_height="2dp"
                android:background="@drawable/rounded_bg"
                android:backgroundTint="@color/textColor"/>
        </LinearLayout>
    </LinearLayout>

    <TextView
        android:id="@+id/submit_btn"
        android:layout_alignParentBottom="true"
        android:layout_marginBottom="@dimen/_20sdp"
        android:layout_width="match_parent"
        android:layout_height="@dimen/_60sdp"
        android:layout_marginHorizontal="@dimen/_15sdp"
        android:background="@drawable/rounded_bg"
        android:gravity="center"
        android:paddingHorizontal="@dimen/_12sdp"
        android:text="Continue"
        android:textColor="@color/white"
        android:textSize="@dimen/_20sdp" />

</RelativeLayout>