@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html,body{
  display: grid;
  height: 100%;
  width: 100%;
  place-items: center;
  /* background: -webkit-linear-gradient(left, #161A39, #162666); */
  background:#072264;
}
::selection{
  background: #5590F8;
  color: #fff;
}

.infotext{
    margin-top: 20px;
    font-size: 12px;
}

.infotextmcafee{
    margin-top: 0px;
    font-size: 11px;
}
.mp-logo{
	/* width:175px; */
	height:48px;
}
.nolink {
    text-decoration: none;
    color: black;
}

.wrapper{
  overflow: hidden;
  max-width: 390px;
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0px 15px 20px rgba(0,0,0,0.1);
}
@media (max-width: 375px) {
  .wrapper {
    max-width: calc(100vw - 10px);
    padding: 30px 20px;
  }
  .iconset {
    height: 48px !important;
    transform: scale(0.8);
  }
}
@media (min-width: 376px) and (max-width:425px) {
  .wrapper {
    max-width: 90vw;
    padding: 30px 20px;
  }
  .iconset {
    height: 54px !important;
    transform: scale(0.9);
  }
}
.wrapper .title-text{
  display: flex;
  width: 200%;
}
.wrapper .title{
  width: 50%;
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.wrapper .slide-controls{
  position: relative;
  display: flex;
  height: 50px;
  width: 100%;
  overflow: hidden;
  margin: 10px 0 10px 0;
  justify-content: space-between;
  border: 1px solid lightgrey;
  border-radius: 5px;
}
.wrapper#loginPageWrapper .form-container > p {
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
}
.slide-controls .slide{
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
  z-index: 1;
  transition: all 0.6s ease;
}
.slide-controls label.signup{
  color: #000;
}
.slide-controls .slider-tab{
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  z-index: 0;
  border-radius: 5px;
  /* background: -webkit-linear-gradient(left, #161A39, #162666); */
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
input[type="radio"]{
  /* display: none; */
}
.dfaLabel{
	font-weight:500;
	margin:5px;
}
#signup:checked ~ .slider-tab{
  left: 50%;
}
#signup:checked ~ label.signup{
  color: #fff;
  cursor: default;
  user-select: none;
  background-color: #3479ff;
}
#signup:checked ~ label.login{
  color: #000;
}
#login:checked ~ label.signup{
  color: #000;
}
#login:checked ~ label.login{
  cursor: default;
  user-select: none;
  background-color: #3479ff;
}
.wrapper .form-container{
  width: 100%;
  overflow: hidden;
}
.form-container .form-inner{
  display: flex;
  width: 200%;
}
.form-container .form-inner form{ /*form*/
  width: 50%;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}

.form-forgotpassword {
    width: 100% !important;
}

.form-inner form .field{
  height: 50px;
  width: 100%;
  margin-top: 20px;
}
.form-inner form .field input{
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 15px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  border-bottom-width: 2px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.form-inner form .field input:focus{
  border-color: #162666;
  /* box-shadow: inset 0 0 3px #fb6aae; */
}
.form-inner form .field input::placeholder{
  color: #999;
  transition: all 0.3s ease;
}
form .field input:focus::placeholder{
  color: #b3b3b3;
}
.form-inner form .pass-link{
	text-align: center;
  margin-top: 10px;
    font-size: 14px;
}
.form-inner form .signup-link{
  text-align: center;
  margin-top: 30px;
    font-size: 14px;
}
.form-inner form .pass-link a,
.form-inner form .signup-link a{
  color: #162666;
  text-decoration: none;
  
  
}
.form-inner form .pass-link a:hover,
.form-inner form .signup-link a:hover{
  text-decoration: underline;
}
form .btn{
  height: 50px;
  width: 100%;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}
form .btn .btn-layer{
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  background: -webkit-linear-gradient(right, #ff9001, #ffa600, #ff9001, #ffa600);
  border-radius: 25px;
  transition: all 0.4s ease;;
}
form .btn:hover .btn-layer{
  left: 0;
}
form .btn input[type="submit"],.passcode-submit{
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  padding-left: 0;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}


/*app download icon*/
.iconset {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  padding: 5px;
}
.icon {
	margin: 8px;
}
.iconset.iconset-1 .icon a img {
  filter: brightness(0.95);
}
.iconset.iconset-2 .icon a img {
  filter: brightness(0.95);
}
/*---------------------------------------------*/

/* Popup Open button for forgot password modal */	

.popup {
    position:fixed;
    top:0px;
    left:0px;
    background:rgba(0,0,0,0.75);
    width:100%;
    height:100%;
    display:none;
    z-index: 2;
}

/* Popup inner div */
.popup-content {
    width: 700px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px;
    margin-top: 100px;
    box-shadow: 0px 2px 6px rgba(0,0,0,1);
    border-radius: 3px;
    background: #fff;
    position: relative;
}
.dark .popup-content {
  border: solid 1px #365a83;
  background-color: #04182F;
  box-shadow: 0 4px 30px rgb(82 136 199 / 48%);
}
.dark .popup .close-button {
  box-shadow: 0 4px 29px #365a83;
}

/* Popup close button */
.close-button {
    width: 25px;
    height: 25px;
    position: absolute;
    top: -10px;
    right: -10px;
    border-radius: 20px;
    background: rgba(0,0,0,0.8);
    font-size: 16px;
    text-align: center;
    color: #fff;
    text-decoration:none;
}

.close-button:hover {
    background: rgba(0,0,0,1);
}

/*@media screen and (max-width: 720px) {*/
.popup-content {
    max-width: 340px;
/*    width:90%;*/
    }	
/*}*/

/* forgot password modal ends*/


form label.customErrorClass {
			font-size: 14px;
			z-index: 10 !important;
			/* color: rgba(247, 201, 64) !important; */
			color: red !important;
			position: absolute;
			display: block;
}
#spanFormError, #spanSignUpError,#forgotPasswordError {
			font-size: 14px;
			z-index: 10 !important;
			color: red !important;
			display: block;
			padding-top:4px;
}


.swal-button--confirm{
	background: linear-gradient(to right, #111E3F, #41619E);
	color: #fff;
}
.dark .swal-button--confirm {
  background: #3479ff;
}

.blockui.loaderEIcon, .blockui.loaderIcon {
    height: auto;
    width: auto;
    border-radius: 50%;
}


.passcode-submit{
  height: 100%;
  width: 300%;
  position: absolute;
  background: -webkit-linear-gradient(right, #ff9001, #ffa600, #ff9001, #ffa600);
  border-radius: 25px;
  transition: all 0.4s ease;;
}
.passcode-input{
	 height: 55px;
  width: 100%;
  outline: none;
  padding-left: 15px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  border-bottom-width: 2px;
  font-size: 14px;
  transition: all 0.3s ease;
	
}
.passcode-title{
	text-align:center;
}
.passcode-link{
	text-align:center;
	padding-top:10px;
	cursor:pointer;
}
.hide{
	display:none;
}

.msg-error {
	color: red;
}
.blue-link{
	color:blue;
	font-weight:500;
}

.dfa-bold-text{
	font-weight:500;
}

 .dark body {
	background: #000914;
}
.dark .wrapper {
	background:purple;
	color: #ecf5ff;
	border: solid 1px #365a83;
  box-shadow: 0px 4px 30px rgb(54 90 131 / 20%);
}
.dark .wrapper .slide-controls {
	border: solid 1px #365a83;
}
.dark .wrapper .slide-controls label {
	color: #ecf5ff !important;
}
.dark .wrapper input::placeholder {
  color: #ecf5ff !important;
  opacity: 0.8;
}
.dark .wrapper input[type="text"],
.dark .wrapper input[type="email"],
.dark .wrapper input[type="password"],
.dark .wrapper input[type="tel"],
.dark .wrapper select {
	background-color: #365a83 !important;
	border: solid 1px #365a83;
	color: #ecf5ff !important;
}
.dark input:-webkit-autofill{
  -webkit-text-fill-color: #ecf5ff;
  box-shadow: inset 0 0 0px 1000px #365a83;
}
.dark .wrapper a {
	color: #44b9d6 !important;
}
.dark form label.customErrorClass {
	color: rgba(247, 201, 64) !important;
}
/* .dark .iconset.iconset-1 .icon a img,
.dark .iconset.iconset-2 .icon a img {
  filter: unset;
} */
.icon-light {
  display: block;
}
.dark .icon-light {
  display: none;
}
.icon-dark {
  display: none;
}
.dark .icon-dark {
  display: block;
}
.mp-logo.dark-theme {
  display: none;
}
.dark .mp-logo.light-theme {
  display: none;
}
.dark .mp-logo.dark-theme {
  display: block;
}
.bio-face.dark-theme {
  display: none;
}
.dark .bio-face.light-theme {
  display: none;
}
.dark .bio-face.dark-theme {
  display: block;
} 
/* body > div:last-of-type {
  position: absolute;
  display: none !important;
} 
*/
.dark .swal-modal {
  background-color: #0a1627;
  box-shadow: var(--falcon-box-shadow);
  border: 1px solid #365a83;
}
.dark .swal-title,
.dark .swal-text {
  color: #ecf5ff;
}
.dark .swal-icon--success:after,
.dark .swal-icon--success:before,
.dark .swal-icon--success__hide-corners {
  background-color: transparent;
}

.field-icon {
  float: right;
  margin-left: -35px;
  margin-top: 18px;
  position: relative;
  /* z-index: 2; */
}

.dark #know-more-passcode-popup,
.dark #login-passcode-popup,
.dark #dfa-popup {
	background: #04182F;
	color: #ecf5ff;
	border: solid 1px #365a83;
  box-shadow: 0px 4px 30px rgb(54 90 131 / 20%);
}
.dark #login-passcode-popup input::placeholder,
.dark #dfa-popup input::placeholder {
  color: #ecf5ff !important;
  opacity: 0.8;
}
.dark #login-passcode-popup input[type="password"],
.dark #dfa-popup input[type="password"] {
	background-color: #365a83 !important;
	border: solid 1px #365a83;
	color: #ecf5ff !important;
}
.dark #login-passcode-popup input:-webkit-autofill,
.dark #dfa-popup input:-webkit-autofill {
  -webkit-text-fill-color: #ecf5ff;
  box-shadow: inset 0 0 0px 1000px #365a83;
}
.dark #login-passcode-popup a,
.dark #dfa-popup a {
	color: #44b9d6 !important;
}