NoorAhmed says:
<asp:Panel ID="pnlPopup" runat="server" Class="modalPopup" Style="display: none">
<div class="footer" align="right" style ="float:right;">
<asp:Button ID="btnClose" runat="server" UseSubmitBehavior="false" Text="x" style=" margin: 2px; font-size: 22px; color: white; background: none;
border: none; border-color:none ; border-radius:0px; " />
</div>
<div class="login">
<div class="login-header">
<p style="font-size:30px;font-family: 'Lato', sans-serif; display: block; border-bottom: 1px solid rgba(255, 255, 255, 0.3);
margin: 0 0 0.1em 0; padding-bottom: 20px;">CONTACT US </p>
<p style=" font-family: 'Lato', sans-serif; font-size: 1.25em; margin: 1em 0 0.4em 0;">Fill out the form below to complete register!</p>
</div>
<div class="login-form">
<p class="left">
<asp:Label ID="Label1" runat="server" Text="Full Name" CssClass ="login-label" ></asp:Label>
<asp:TextBox ID="TextBoxName" runat="server" placeholder="Your Name" class="input"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="*"
ControlToValidate = "TextBoxName"></asp:RequiredFieldValidator>
</p>
<p style="float:right;">
<asp:Label ID="Label2" runat="server" Text="Email" CssClass ="login-label" ></asp:Label>
<asp:TextBox ID="TextBoxEmail" runat="server" placeholder="Example@gmail.com" class="input"></asp:TextBox>
<asp:RegularExpressionValidator id="valRegEx" runat="server"
ControlToValidate="TextBoxEmail"
ValidationExpression=".*@.*\..*"
ErrorMessage="*Invalid Email address."
display="dynamic">
</asp:RegularExpressionValidator>
<asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" ErrorMessage="*"
ControlToValidate = "TextBoxEmail"></asp:RequiredFieldValidator>
</p>
<p class="left">
<asp:Label ID="Label3" runat="server" Text="Country" CssClass ="login-label" ></asp:Label>
<asp:TextBox ID="TextBoxCityName" runat="server" placeholder="Your Country" class="input"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ErrorMessage="*"
ControlToValidate = "TextBoxCityName"></asp:RequiredFieldValidator>
</p>
<p style="float:right;">
<asp:Label ID="Label4" runat="server" Text="Phone Number" CssClass ="login-label" ></asp:Label>
<asp:TextBox ID="TextBoxPhone" runat="server" placeholder="Your Phone" class="input"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator4" runat="server" ErrorMessage="*"
ControlToValidate="TextBoxPhone" ValidateEmptyText="true" ValidationExpression= "^([0-9\(\)\/\+ \-]*)$"></asp:RequiredFieldValidator>
</p>
<p class="left">
<asp:Label ID="Label5" runat="server" Text="Comment" CssClass ="login-label" ></asp:Label>
<asp:TextBox ID="TextBoxComment" runat="server" placeholder="Nots" TextMode="MultiLine"
Rows="4" class="login-textarea" ></asp:TextBox><br />
</p>
<p>
<asp:Button ID="Button1" UseSubmitBehavior="false" runat="server" Text="Rigester" CommandName="Select" class="btn btn-primary" OnClick="SendEmail" style=" cursor: pointer; border-radius: 5px;box-shadow:none; margin-left: auto; margin-right:auto;display: inline-block; vertical-align: top; "/>
</p>
</div>
</div>
</asp:Panel>
Replace above code with below.