diff --git a/imports/client/views/verify/EmailPane.js b/imports/client/views/verify/EmailPane.js
index fe99220..1ae3ac2 100644
--- a/imports/client/views/verify/EmailPane.js
+++ b/imports/client/views/verify/EmailPane.js
@@ -2,6 +2,7 @@ import React from 'react';
import { Link } from 'react-router';
import { If, Case } from '/imports/client/components/Logic';
import { Bert } from 'meteor/themeteorchef:bert';
+import './emailpane.css';
import { Row, Col, Alert,ControlLabel,
FormGroup, FormControl, Button } from 'react-bootstrap';
@@ -39,7 +40,7 @@ export class EmailPane extends React.Component {
return (
-
+
@@ -80,7 +81,7 @@ export class EmailPane extends React.Component {
return (
-
+
@@ -88,7 +89,8 @@ export class EmailPane extends React.Component {
Check your email – we sent a verification link to
- {user.emails[0].address}
+
+ {user.emails[0].address}
diff --git a/imports/client/views/verify/emailpane.css b/imports/client/views/verify/emailpane.css
new file mode 100644
index 0000000..b2112d8
--- /dev/null
+++ b/imports/client/views/verify/emailpane.css
@@ -0,0 +1,20 @@
+.wizardPane-section
+{
+ background-color: white;
+ margin: auto;
+ width: 30%;
+ padding: 10px;
+ top:50px;
+ cursor: pointer;
+ font-weight: bold;
+ color: crimson;
+}
+
+.wizardPane-section1
+{
+ background-color: white;
+ margin: auto;
+ width: 30%;
+ border: 3px solid #73AD21;
+ padding: 10px;
+}