﻿/*

Healthx Service Layout CSS

This file defines the layout attributes used to build each service. 
Each service will likely have CSS located in several areas throughout this document.
The initial location will define mobile styles while subsequent iterations will reside within media queries. 
The section header for each service will be the same between all iterations of that service's CSS.

*/

/* =============================================================================
   Forgot Username / Password Service
   ========================================================================== */

input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="tel"], textarea {
	width: 100%;
}

#forgotService #email_only_directions, #forgotService #email_and_text_messaging_directions, #forgotService #forgotSupport {
    display: none;
}

#forgotService .forgotRadioLabel {
	display: block;
	margin-top: .5em;
}

li.curStep 
{
    font-weight: bold;
}
   
@media all and (min-width: 500px) {
	input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="tel"], textarea {
		width: 300px;
	}
}