html, body, .outer {
    height: 100%;
    margin: 0px;
    width: 100%;
}

* {
    margin: 0px auto;
    padding: 0px;
}

body {
	
	background: #f8f8fa;
    color: #747980;
	font-size: 0.8125rem;
	font-weight: normal;
	font-family: Arial, 'Open-sans', Helvetica, Sans-serif;
}

select {
    width: 50px;
    vertical-align: middle;
}

a {
    color: #E51937;
    text-decoration: none;
}

input {
    display: block;
    padding: 1%;
    background-color: #F6F6F8;
    border: 1px #DBDBDB solid;
    border-radius: 3px;
    width: 98%;
    width: 92%;
    height: 30px;
    margin-bottom: 15px;
    font-size: 0.81rem;
    text-align: left;
}

.mfaInput{
    border-radius: 20px;
    margin-bottom: 0px;
}

/* Target the input element with the ID 'totp' and adjust the placeholder text */
#totp::placeholder {
  
    padding-right: 40px !important;
    color: #999 !important;
}

#QRcodeDivOne {
    display: flex;
  
}

#QRScan {
    /* align-items: center;
    display: flex;*/
    padding-top: 30px;
    /*padding-left: 20px;*/
    margin-left: 15px;
}

#qr_text1 {
    font-weight: bold;
}

#registerMFA {
    text-align: center;
    width: 75%;
    padding-top: 20px;
}

#manualKeyPrompt {
    font-weight: bold;
    text-align: center;
    display: inline-block;
}

hr {
    display: inline-block;
    width: 70px;
    color: #cccccc8f;
}

.showKey {
    /* display: inline !important;*/
    padding: 11px !important;
    /*left: 35px;*/
    position: relative;
    margin-left: 5px;
    bottom: 10px;
    width: 100px;
}

#code {
    display: flex;
    width: 100%;
    max-width: 250px;
    align-items: center;
    align-content: center;
  /*  font-size: 12px; */
    padding: 10px;
}
#manualCode {
    display: inline ;
}

#eye {

    padding-top: 10px;
    cursor: pointer;
    position: relative;
    right: 30px;
    height: 20px;
    width: 20px;
}
}
a:hover {
    text-decoration: underline;
}

.hand {
    cursor: pointer;
}

.logoutText {/*not sure why this is here??*/
    padding: 30px 0 0 0;
    text-align: center;
}

.logo {
    display: block;
    width: 100%;
    max-width: 225px;
    height: auto;
    vertical-align: bottom;
	padding-bottom: 10px;
}

/* layout CSS */
.outer {/*force to take full screen*/
    display: table;
    position: absolute;
}

.middle {/*act a cell in the outer div as a table*/
    display: table-cell;
    vertical-align: middle;
}

.container {/*set login form including controls width*/
    width: 30%;
	padding: 3% 4% 2% 4%;/*the whitespace around all controls*/
	background-color: White;
	border-radius:10px;
    max-width:375px;
    box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.25);
}

.arrown_down {/*will leave this in for now*/
    display: none;
    height: 4px;
    padding-left: 40px;
}

.thisForm, .3tier_div {/*the core form areas*/
    height: auto;
}

/*-- spacer styles */
/*hide these two spacers*/
.top_space, .u_p_space {
    display: block;
    height: 0px;
}

.bottom_space {
    display: block;
    height: 16px;
}

.spacer {
    display: block;
    height: 10px;
    width: 100%;
}
/* end of spacer styles */

/* setups style for all labels*/
div[class*="Lbl"] {
    display: none;
    text-align: left;
    vertical-align: middle;
    padding-top: 3px;
}

div.loginLbl {
	display: block;
	text-align: center;
	padding-bottom: 30px;
}

.MFAlbl{
    padding-top:30px;
    padding-bottom: 15px;
}

div.QRLbl {
    display: block;
    padding-bottom: 10px;
}
.username_div, .password_div, .email_div {
    display: block;
    /*padding-top: 30px;*/
}

/* button container styles */
div[class*="btn"] {
    display: block;
    padding-top: 10px;
    height: 40px;
	text-align: right;
}
/* button link styles*/
    div[class*="btn"] a {
        /*background-color: #3B76A9;*/
        background-color: #E51937;
        color: #FFF;
        /* padding: 7px 20px;*/
        border-radius: 3px;
        font-weight: 700;
        text-decoration: none;
        margin-right: -2px;
        display: flex;
        justify-content: center;
        border-radius: 20px;
        padding: 13px;
      
    }

/*for link container for switch between forgotten password and login*/
.forgotten, .lostPword {
    float: left;
    padding-top: 10px;
    width: 75%;
    display: block;
    text-align: left;
}
/*for link switch between forgotten password and login*/
.forgotten > a, .lostPword > a {
	display: inline-block;
	padding: 5px 0px 5px 0px;
}

/* tier 3 login stylings */
.char {
    font-weight: bold;
}

.char_txt {
	display: block;
	padding-left: 30px;
	padding: 5px;
	vertical-align: middle;
	line-height: 20px;
	text-align: center;
}

.manualKey {
    float:left;
   
}

/* end of tier 3 login stylings */
/* media queries */
@media only screen and (min-width: 700px) and (max-width: 1200px) {
    .container { /*set width for entire form area*/
        width: 50%;
    }
}

@media only screen and (max-width: 700px) {
    .container { /*set width for entire form area*/
        width: 50%;
        padding: 5% 10%;
    }
	
	.forgotten, .lostPword { /*keep the buttons correctly inline*/
		width: 60%;
	}
}

@media only screen and (max-width: 550px) {
	.logo { /*since we remove the padding on the container to prevent overflow we now need padding to prevent the logo being flush*/
		padding-top:25px;
	}
	
	input {/*prevent overlap*/
		width:85%;
	}
	
    .container { /*set width for entire form area*/
        width: 94%;
		padding: 0px;
		margin: 0px auto;
        max-width: none;
    }
	
	.forgotten, .lostPword { /*keep the links correctly inline*/
		padding-left: 20px;
	}
	
	div[class*="btn"] a {
		margin-right: 20px;
	}
}