@import url("fonts/Montserrat/Montserrat.css");
body  {
	font-family: 'Montserrat';
	margin: 0;
	padding: 0;
	background:#FAFAFA;
}

.login-header{
    text-align: center;
}

.login-header p{
	font-size: 1.2em;
}

.login-container{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
	padding: 20px
}

.login-container .login-form{
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
	width: 400px;
	border-radius: 15px;
	padding: 30px;
}

.login-form .field-wrapper{
	padding:10px;
	position: relative;
}

.field-wrapper input[type=text] {
	background-image: url(/assets/style/image/username_icon.svg);
	width: 80%;
	height: 20px;
	padding: 12px 20px;
	margin: 8px 0;
	border-radius: 5px;
	border: 1px solid #D0CECE;
	background-color: #F2F2F2;
	background-repeat: no-repeat;
	background-size: 30px 30px;
	padding-left: 45px;
	background-position: 5px 5px;
}


.field-wrapper select {
	background-image: url(/assets/style/image/branch_icon.svg);
	width: 97%;
	height: 42px;
	padding: 12px 20px;
	margin: 8px 0;
	border-radius: 5px;
	border: 1px solid #D0CECE;
	background-color: #F2F2F2;
	background-repeat: no-repeat;
	background-size: 30px 30px;
	padding-left: 45px;
	background-position: 5px 5px;
}


.field-wrapper::before {
	content: "";
	position: absolute;
	top: 45px;
	left: 50px;
	width: 2px;
	height: 30px;
	background-color: #D0CECE;
}

.field-wrapper input[type].input-password{
	background-image: url(/assets/style/image/password_icon.svg);
	background-position: 5px 5px, calc(100% - 5px) -2px;
	background-repeat: no-repeat, no-repeat;
	background-size: 30px 30px, 40px 40px;
	width: 80%;
	height: 20px;
	padding: 12px 20px;
	margin: 8px 0;
	border: 1px solid #D0CECE;
	border-radius: 5px;
	padding-left: 45px;
	background-color: #F2F2F2;
}

.field-wrapper .toggle-password {
	background-image: url(/assets/style/image/eye_icon_hide.svg);
	background-position: 15px 7px;
	background-repeat: no-repeat, no-repeat;
	background-size: 25px 30px;
	padding: 12px 20px;
	margin-left: -45px;
	cursor: pointer;
	opacity: 0.5;
}

.field-wrapper .toggle-password.visible {
  background-image: url(/assets/style/image/eye_icon_view.svg); /* Replace with the path to your eye icon visible image */
}

.action-wrapper{
	display: flex;
	justify-content: space-around;
	margin-top: 40px;
	align-items: center;
}

.action-wrapper .forgot-password-wrapper span{
	color :#595959;
	text-decoration: underline;
	cursor: pointer;
}

.action-wrapper button{
	background: #ED1C24;
	color: #FAFAFA;
	border: none;
	padding: 10px;
	width: 120px;
	border-radius: 20px;
	height: 40px;
	cursor: pointer;
}

.action-wrapper button:hover{
	background: #424242;
}

.footer-wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	position: absolute;
}


.footer-wrapper p{
	font-size: 0.8em;
	text-align: center;
}

.error-msg {
	padding: 15px;
	display: flex;
	align-items: center;
}

.error-msg .error-close-icon {
	background: #ed1c24;
	border-radius: 50%;
	height: auto;
  width: 20px;
	color: #FAFAFA;
	font-weight: bold;
	display: flex;
	justify-content: center;
	margin-top: -15px;
	cursor: pointer;
}

.error-msg span{
	color: #ED1C24;
	font-size: 0.9em;
	padding-left: 5px;
	margin-top: -15px;
	text-align: left;
}

/* tooltip */
/* Tooltip container */
.tooltip {
	border-radius: 13px;
	width: 20px;
	height: 20px;
	color: #FAFAFA;
	font-size: 1em;
	border: none;
	display: inline-block;
	background:#666666;
	text-align: center;
}

/* Tooltip text */
.tooltip .tooltiptext {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
	visibility: hidden;
	width: 200px;
	background-color: #F2F2F2;
	color: #000000;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;
	position: absolute;
	z-index: 1;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* Modal */
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal .modal-content {
	background-color: #FAFAFA;
  margin: auto;
  width: 450px;
  border-radius: 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.modal .modal-body {
	margin-top: 25px;
}

.modal-body .field-wrapper{
	position: relative;
}

.modal-body .field-wrapper input[type=text],input[type=number]{
    background-image: url(/assets/style/image/username_icon.svg);
    width: 80%;
    height: 20px;
    padding: 12px 20px;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #D0CECE;
    background-color: #F2F2F2;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    padding-left: 45px;
		background-position: 4px 6px;
}

.modal-body .field-wrapper::before {
	content: "";
	position: absolute;
	top: 16px;
	left: 50px;
	width: 1px;
	height: 30px;
	background-color: #D0CECE;
}

.modal-body input[type].input-password{
	background-image: url(/assets/style/image/password_icon.svg);
	background-position: 5px 5px, calc(100% - 5px) -2px;
	background-repeat: no-repeat, no-repeat;
	background-size: 30px 30px, 40px 40px;
	width: 80%;
	height: 20px;
	padding: 12px 20px;
	margin: 8px 0;
	border: 1px solid #D0CECE;
	border-radius: 5px;
	padding-left: 45px;
	background-color: #F2F2F2;
}

.modal .modal-content .modal-header{
	height: 70px;
	background: #F5F5F5;
	border-bottom: 3px solid #E5E5E5;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.modal .modal-content .modal-header p{
  color: #262626;
  font-size: 1.5em;
	text-align: left;
	padding-left: 15px;
}

.modal .modal-content .modal_body_message{
	margin-top: -10px;
}

.modal .modal-content .modal_body_wrapper{
	display: flex;
	justify-content: center;
}

.modal .modal-content .modal_body_wrapper .error_login_message{
	width: 392px;
}

.modal .modal-content .modal-action{
  display: flex;
  justify-content: center;
	padding: 10px;
}

.modal .modal-content .modal-action .close-btn,.modal_close_btn{
	font-family: 'Montserrat';
	width: 150px;
	border-radius: 20px;
	color: #262626;
	background: #FFFFFF;
	cursor: pointer;
	text-align: center;
	line-height: 25px;
	text-decoration: none;
	margin: 0px 15px 0px 15px;
	border: 2px solid #e5e5e5;
	height: 40px;
}

.modal .modal-content .modal-action .submit-btn{
  font-family: 'Montserrat';
  width: 150px;
	border-radius: 20px;
  color: #FAFAFA;
  background: #ED1C24;
  cursor: pointer;
  text-align: center;
  line-height: 25px;
  text-decoration: none;
  margin: 0px 15px 0px 15px;
	border: none;
	height: 40px;
}
/* End Modal */


.error_message{
	color: #FAFAFA;
	font-size: 1.5em;
	position: absolute;
	bottom: 200px;
	left: 50%;
	margin-left: -100px;
}



/* Media Queries */
/* End of Media Queries */
