/* Dual SSO & Direct Custom Login Page by Destiny Karrington, Kenni Wise and other Delivery folks */

/* KW Note to Delivery: To find brand-specific color changes made on this file, look for comment: 'JNJ branding color on line below' */

/* reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;

}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* fonts */

body, input, textarea {
	font-family: 'Ek Mukta', "Myriad Pro", sans-serif;
}

/* general structure */

.container
{
    position: relative;
    display:block;
    width: 860px;
    padding:0px;
	margin:0px auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.loginContainer {
	background-image:none;
	background-color:#fff;
	width:100%;
	height:285px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	padding:16px 16px 0px 16px;
	z-index:9997;
    /* JNJ branding color on line below */
	border: solid 2px #000000;
	/* border-top: solid 2px #1B325D !important; KW: commented out - seems unncessary */
}

#ssologinarea {
    text-align: center;
    background: white;
	color: #0072bb;
    font-size: 20px;
    padding-top: 30px;
	padding-bottom: 35px;
	display:block;
	/* JNJ branding color on line below */
	border: solid 2px #000000;
	/* border-bottom: solid 2px #1B325D; KW: commented out - seems unnecessary*/
	z-index: 9997;
    margin-top: -1px;
}

#ssologinarea img {
    width: 100%; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto 25px; /* Center the image and add space below */
}

.loginoptions{
	margin-top:25px;
	margin-bottom: 25px;
	color:gray;
	display:block;
}


/* =Global Elements
-------------------------------------------------------------- */

html {
	height:100%;
	min-height:100%;
    min-width:100%;
}

body {
	/* kw: background-color #BABCBE commented out */
	/* background-color:#BABCBE;*/
	/* JNJ branding color on line below */
	background-color:#EB1700;
	height:100%;
	min-height:100%;
}

body,
input,
textarea {
	color: #666;
	font-size: 12px;
	line-height: 18px;
}

hr {
	background-color: #00aeef;
	border: 0;
	clear: both;
	height: 3px;
	margin-bottom: 10px;
}

/* general classes */

.vert-50 {
	top: 50%;
    transform: translateY(-50%);
}

.center {
	text-align:center;
}

.right {
	text-align:right;
}

.left {
	text-align:left;
}

.hidden {
	display:none!important;
}

.ico {
	padding-left:20px;
	background-repeat:no-repeat;
	background-position:left center;
	display:inline-block;
	text-decoration:none;
	color:#333;
	font-size:11px;
	line-height:15px;
}

a.ico:hover {
	text-decoration:underline;
}

.btn {
	background-repeat:no-repeat;
	background-position:left center;
	padding-left:10px!important;
}

.rounded {
	-moz-border-radius: 8px!important;
	-webkit-border-radius: 8px!important;
	border-radius: 8px!important;
	-khtml-border-radius: 8px!important;
}

.gray {
	background-color:#d1d3d4!important;
}

/* specific structure */

.parent-element {
    overflow: visible; /* Ensure the parent element allows overflow */
}

#ctl00_cphBody_BodyPanel {
    /* JNJ branding color on line below */
	background-color: #EB1700;
    height: auto;
    min-height: 100%;
    /* KW: background elements below commented out for conversion to JNJ */
/* 	background-image: url(/globalassets/HHPruvo/6963980_Ferg_BOD-Background-Update-nologo.jpg);
    background-repeat: repeat;
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    vertical-align: middle; */
}

.icn-globe {
  width: 20px;
  height: 20px;
  mask-size: contain;
  mask-repeat: no-repeat;
  margin-left: 5px;
}
#ctl00_cphBody_LanguageSelectorContainer {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000; /* Ensure this is higher than other elements */
}

.languagesContainer {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px 10px;
}

.selectLang {
  display: flex;
  align-items: center;
  cursor: pointer;
}

#languagesList {
  display: none;
  position: absolute;
  list-style-type: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow-y: auto;
  max-height: 150px;
  right: 0;
  top: 100%;
  z-index: 1;
  z-index: 1001; /* Ensure this is higher than the container */
}

.languagesContainer:hover #languagesList {
  display: block;
}

#languagesList li {
  padding: 5px;
}

#languagesList li.selected {
  background-color: #f0f0f0;
}

#languagesList li a {
  text-decoration: none;
  color: #000;
}

#languagesList li:hover {
  background-color: #f0f0f0;
}

#login {
	position:relative;
	display:block;
	width:100%;
	height:900px;
	padding:150px 0 0 0;
}

#login-container {
	position: relative;
	display:block;
	width:400px;
	height:auto;
	margin:10% auto;
}

#age-gate {
	background-image:none;
	background-color:rgba(0,0,0,1);
	width:320px;
	height:250px;
	margin-left:-200px;
	margin-top:-125px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	padding:30px 16px;
	top:50%;
	left:50%;
	position:absolute;
	-moz-border-radius: 8px!important;
	-webkit-border-radius: 8px!important;
	border-radius: 8px!important;
	-khtml-border-radius: 8px!important;
	z-index:9999;
}

#logo {
	display:block;
	position:relative;
	width:100%;
	height:auto;
	padding:0px;
	background-color:#E6E7E8;
	text-align:center;
}

#logo img {
	display:none;
	width:100%;
	height:auto;
}

#footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 20px; /* Added padding to the sides */
    background-color: #fff;
    font-size: 12px;
    color: #696a6d;
    border-top: 1px solid #000;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between; /* Distribute space between items */
    align-items: flex-start; /* Align items at the start of the container */
}

#footer b, #footer strong {
    font-weight: 800; /* or 700 */
}

#footer a {
	color: #696a6d;
    text-decoration: none;

}

.footer-left, .footer-right {
    width: 45%; /* Adjust width as needed */
}

.footer-right {
    text-align: right;
}

/* .footer-chunk { */
    /* position: relative; */
    /* float: left; */
    /* width: 33.3333%; */
    /* box-sizing: border-box; */
	/* color: #fff; */
/* } */

/* #footer p {
	color: #fff;
    line-height: 20px;
    font-size: 12px;
    width: 90%;

} */

#footer a {
	color: #696a6d;
    text-decoration: none;

}


.footer-right img {
    max-width: 300px;
    max-height: 80px;
    margin-left: 5px;
}
/* 
#footer img {
    display: inline-block;
    width: auto;
    height: auto;
    max-height: 22px;
} */





/* buttons */
#ssobutton{
	/* JNJ branding color on line below */
	color:#FFF;
	/* JNJ branding color on line below */
	background-color:#000000;
	font-size:20px;
	padding:15px 38px;
	/*margin-top:10px;*/
	border-radius:30px;
}

#ssobutton:hover{
	color:#FFF;
	/* JNJ branding color on line below */
	background-color:#EB1700;
}

a#ssolink{
	color:white;
	text-decoration:none;
}

#directbutton{
	color:#FFF;
	background-color:#000000;
	font-size:20px;
	padding:15px 78px;
	/*margin-top:10px;*/
	border-radius:30px;
}

#directbutton:hover{
	color:#FFF;
	/* JNJ branding color on line below */
	background-color:#EB1700;
}

#aspnetForm, #logo {
    display: none;
}

a.button {
	text-decoration: none;
	display: inline-block;
	padding: 0px 16px;
	margin-bottom: 0px;
	font-size: 18px;
	font-weight: normal;
	font-style: normal;
	letter-spacing: 1px;
	line-height: 48px;
	height: 48px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	color: #FFF;
	/* JNJ branding color on line below */	
	background-color: #000000;
	border:0px!important;
	white-space:nowrap;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-khtml-border-radius: 5px;
}

a.button:hover {
	cursor: pointer;
	/* JNJ branding color on line below */
	background-color: #EB1700
	text-decoration: none;
}

input.submit, input[type=submit] {
	display:block;
	position:relative;
	width:110px;
	height:34px;
	/* JNJ branding color on line below */
	color:#000000;
	text-align:center;
	font-size:18px;
	text-decoration:none;
	/*background-image:url(/globalassets/HHPruvo/LoginButton.png);
	background-repeat:no-repeat;
	background-position:center center;
	background-color:transparent;*/
	border:0;
	margin:-25px 240px;
	cursor:pointer;
}

input.submit:hover, input[type=submit]:hover, .loginButton-Portal input:hover {
	text-decoration:underline;
	/* JNJ branding color on line below */
	background-color: #000000;
	color:#FFF;
}

#back-button{
    position: absolute;
    right: 0;
    color: white;
    /* JNJ branding color on line below */
	background-color: #EB1700;
    font-size: 20px;
    padding: 0px 5px;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
}

/* forms */

input[type="text"], input[type="password"] {
	font-size:16px;
	color:#666;
	height:48px;
	line-height:48px;
	padding:0px 10px 0px 10px!important;
	display:block;
	background-color:#FFF;
	border:none;
	width:100%;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	-webkit-box-shadow:none!important;
}

input[type="text"]:focus, input[type="password"]:focus {
	color:#000;
}

#ctl00_cphBody_ctl00_LoginViewControl_CustomLoginControl_UserName {
	margin-top: 30px;
    border: solid 1px #808080;
	width: 350px;
}

#ctl00_cphBody_ctl00_LoginViewControl_CustomLoginControl_Password {
	margin-top: 60px;
    border: solid 1px #808080;
	width: 350px;
}

select {
	padding:5px;
	font-size:16px;
	background-color:#efefef;
	border:0;
}

.form-field, .loginUserName-Portal, .loginPassword-Portal {
	display:block;
	width:100%;
	margin-bottom:16px;
	padding-left:0px;
	background-repeat:no-repeat;
	background-position:center left;
	height:48px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.login-button.btn {
    padding: 0 16px!important;
}

.loginButton-Portal {
	display:block;
	position:absolute;
	width:248px;
	margin-top:30px;
	text-align:center;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.remember-me-portal {
	display:block;
	position:absolute;
	width:auto;
	margin-left:60px;
	margin-top:10px;
}

.selfRegistrationLink-Portal, passwordResetLink-Portal {
	display:block;
	position:absolute;
	width:auto;
	margin-left:0px;
	margin-top:16px;
}

.go-field p, .go-field label, .go-field a, .remember-me-portal label, .passwordResetLink-Portal a, .selfRegistrationLink-Portal a {
	font-size:13px;
	color:#000;
	text-decoration:none;
}

.go-field p {
	margin-bottom:5px;
}

.form-fields {
	display:block;
	margin-bottom:20px;
}

#age-check {
	display:block;
	padding:20px 0px;
	text-align:center;
}

/* clearfix */

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.clearfix {
	display: block;
}

html[xmlns] .clearfix {
	display: block;
}

* html .clearfix {
	height: 1%;
}

#PasswordLabel{
	color: #000;
    font-size: 16px;
    margin: 128px 16px;
	position: absolute;
}

#UsernameLabel {
    color: #000;
    font-size: 16px;
    margin: 20px 16px;
	position: absolute;
}

#ctl00_cphBody_ctl00_LoginViewControl_CustomLoginControl_FailedText {position: absolute;margin: 80px;color: red;}

#ctl00_cphBody_ctl00_LoginViewControl_CustomLoginControl_FailedLink {
    position: absolute;
    top: 17px; /* Adjust this value to position it next to the Email Address line */
    left: 130px; /* Adjust this value to position it to the right of the Email Address line */
    color: blue;
    text-align: left;
    width: auto; /* Adjust width to fit content */
	font-size: 24px;
    font-weight: bold;
}
