diff --git a/cas_auth/views/default/account/forms/getemail.php b/cas_auth/views/default/account/forms/getemail.php
index a747b4b54a5b112601e32c96b8c1adabc6e402d3..2dadbed3c96b4345b5db040eb350b4eac18c907e 100644
--- a/cas_auth/views/default/account/forms/getemail.php
+++ b/cas_auth/views/default/account/forms/getemail.php
@@ -17,13 +17,23 @@
 		$vars['unl_email'] = $_REQUEST['e'];
 	}
 
-	$form_body .= "<p><label>" . elgg_echo('email') . "<br />" . elgg_view('input/text' , array('internalname' => 'email', 'class' => "general-textarea", 'value' => $vars['unl_email'])) . "</label><br />";
-
-	$form_body .= elgg_view('input/submit', array('internalname' => 'submit', 'value' => 'Complete Registration and Login!')) . "</p>";
+	$form_body = '<p class="required">Indicates a required field.</p>';
+	$form_body .= '<fieldset>
+    				<legend>Email Verification</legend>
+    				<ol>';
+	$form_body .= "<li class='required'><label class='element'>" . elgg_echo('email') . "</label><div class='element'>" . elgg_view('input/text' , array('internalname' => 'email', 'class' => "general-textarea", 'value' => $vars['unl_email'])) . "</div></li>";
+	$form_body .= "</ol></fieldset>";
+	$form_body .= '<p class="submit">' .elgg_view('input/submit', array('internalname' => 'submit', 'value' => 'Complete Registration and Login!')) . "</p>";
 ?>
 
-	
-	<div id="register-box">
-	<h2>We just want to make sure we have your correct e-mail and then we'll log you in</h2>
+	<h2 class="sec_header">Email Verification</h2>
+	<div class="three_col left formCool">
+	<p>We just want to make sure we have your correct e-mail and then we'll log you in.</p>
 	<?php echo elgg_view('input/form', array('action' => "{$vars['url']}action/cas_auth/getemail", 'body' => $form_body)) ?>
+	</div>
+	<div class="col right">
+	<div class="zenbox cool">
+	<h3>Email Address Usage</h3>
+	<p>Your email address is only used to send notifications from Planet Red.</p>
+	</div>
 	</div>
\ No newline at end of file