



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('../fonts/poppins/Poppins-SemiBold.ttf'); 
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf'); 
}

@font-face {
  font-family: Montserrat-SemiBold;
  src: url('../fonts/montserrat/Montserrat-SemiBold.ttf'); 
}

@font-face {
  font-family: Montserrat-Regular;
  src: url('../fonts/montserrat/Montserrat-Regular.ttf'); 
}


/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Poppins-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #007bff;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #999999;}
input:-moz-placeholder { color: #999999;}
input::-moz-placeholder { color: #999999;}
input:-ms-input-placeholder { color: #999999;}

textarea::-webkit-input-placeholder { color: #999999;}
textarea:-moz-placeholder { color: #999999;}
textarea::-moz-placeholder { color: #999999;}
textarea:-ms-input-placeholder { color: #999999;}


label {
  display: block;
  margin: 0;
}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ utility ]*/

/*==================================================================
[ Text ]*/
.txt1 {
  font-family: Montserrat-Regular;
  font-size: 13px;
  line-height: 1.4;
  color: #555555;
}

.txt2 {
  font-family: Montserrat-Regular;
  font-size: 13px;
  line-height: 1.4;
  color: #999999;
}


/*==================================================================
[ Size ]*/
.size1 {
  width: 355px;
  max-width: 100%;
}

.size2 {
  width: calc(100% - 43px);
}

/*==================================================================
[ Background ]*/
.bg1 {background: #3b5998;}
.bg2 {background: #1da1f2;}
.bg3 {background: #cd201f;}


/*//////////////////////////////////////////////////////////////////
[ login ]*/
.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
}


.wrap-login100 {
  width: 100%;
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row-reverse;

}

/*==================================================================
[ login more ]*/
.login100-more {
  width: calc(100% - 560px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}





/*==================================================================
[ Form ]*/

.login100-form {
  width: 560px;
  min-height: 100vh;
  display: block;
  background-color: #f7f7f7;
  padding: 173px 55px 55px 55px;
}

.login100-form-title {
  width: 100%;
  display: block;
  font-family: Poppins-Regular;
  font-size: 29px;
  color: #333333;
  line-height: 1.3;
  text-align: center;
}



/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
  height: 80px;
  position: relative;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  margin-bottom: 10px;
}

.label-input100 {
  font-family: Montserrat-Regular;
  font-size: 18px;
  color: #999999;
  line-height: 1.2;

  display: block;
  position: absolute;
  pointer-events: none;
  width: 100%;
  padding-left: 24px;
  left: 0;
  top: 30px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100 {
  display: block;
  width: 100%;
  background: transparent;
  font-family: Montserrat-Regular;
  font-size: 18px;
  color: #555555;
  line-height: 1.2;
  padding: 0 26px;
}

input.input100 {
  height: 100%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

/*---------------------------------------------*/

.focus-input100 {
  position: absolute;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  pointer-events: none;
  border: 1px solid #007bff;
  border-radius: 10px;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  -webkit-transform: scaleX(1.1) scaleY(1.3);
  -moz-transform: scaleX(1.1) scaleY(1.3);
  -ms-transform: scaleX(1.1) scaleY(1.3);
  -o-transform: scaleX(1.1) scaleY(1.3);
  transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus + .focus-input100 {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.eff-focus-selection {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.input100:focus {
  height: 48px;
}

.input100:focus + .focus-input100 + .label-input100 {
  top: 14px;
  font-size: 13px;
}

.has-val {
  height: 48px !important;
}

.has-val + .focus-input100 + .label-input100 {
  top: 14px;
  font-size: 13px;
}

/*==================================================================
[ Restyle Checkbox ]*/

.input-checkbox100 {
  display: none;
}

.label-checkbox100 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #999999;
  line-height: 1.4;

  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.label-checkbox100::before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 13px;
  color: transparent;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #007bff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-checkbox100:checked + .label-checkbox100::before {
  color: #007bff;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: #007bff;

  font-family: Montserrat-Bold;
  font-size: 12px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover {
  background: #333333;
}



/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 992px) {
  .login100-form {
    width: 50%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .login100-more {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .login100-form {
    width: 100%;
  }

  .login100-more {
    display: none;
  }
}

@media (max-width: 576px) {
  .login100-form {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 70px;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  z-index: 100;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  z-index: 110;
  color: #c80000;
  font-size: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}



/*==================================================================
[ Social ]*/
.login100-form-social-item {
  width: 36px;
  height: 36px;
  font-size: 18px;
  color: #fff;
  border-radius: 50%;
}

.login100-form-social-item:hover {
  background: #333333;
  color: #fff;
}

/* Modern POS login experience */
:root {
  --login-primary: #b4101e;
  --login-primary-dark: #790b14;
  --login-gold: #d5af45;
  --login-text: #2a1114;
  --login-muted: #775e61;
  --login-border: #ead8d9;
}

body {
  color: var(--login-text);
  background: #f8efef;
}

.container-login100 {
  padding: 24px;
  background:
    radial-gradient(circle at 10% 10%, rgba(180, 16, 30, .15), transparent 32%),
    radial-gradient(circle at 90% 90%, rgba(213, 175, 69, .18), transparent 34%),
    #f8efef;
}

.wrap-login100 {
  width: min(1180px, 100%);
  min-height: min(720px, calc(100vh - 48px));
  border-radius: 28px;
  border: 1px solid rgba(180, 16, 30, .12);
  box-shadow: 0 24px 70px rgba(91, 8, 16, .18);
}

.login100-form {
  width: 48%;
  min-height: auto;
  padding: 58px clamp(36px, 5vw, 76px) 34px;
  background: rgba(255, 255, 255, .98);
}

.login100-more {
  width: 52%;
  background-position: center 36%;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.login100-more::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 9, 10, .08) 30%, rgba(25, 7, 9, .32) 62%, rgba(38, 5, 9, .86) 100%),
    linear-gradient(90deg, rgba(20, 4, 6, .15), transparent 55%);
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 54px;
}

.login-brand-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(213, 175, 69, .8);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(121, 11, 20, .24);
}

.login-brand-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-brand-name,
.login-brand-company {
  display: block;
  line-height: 1.2;
}

.login-brand-name {
  color: var(--login-text);
  font-family: Poppins-Bold;
  font-size: 18px;
  letter-spacing: -.01em;
}

.login-brand-company {
  color: var(--login-muted);
  font-size: 12px;
}

.login-heading {
  margin-bottom: 32px;
}

.login-heading h1 {
  margin-bottom: 9px;
  color: var(--login-text);
  font-family: Poppins-Bold;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -.035em;
}

.login-heading p {
  max-width: 390px;
  color: var(--login-muted);
  font-size: 14px;
  line-height: 1.65;
}

.login-field-label {
  margin: 0 0 8px 2px;
  color: #334155;
  font-family: Poppins-SemiBold;
  font-size: 13px;
}

.wrap-input100 {
  height: 58px;
  margin-bottom: 20px;
  border-color: var(--login-border);
  border-radius: 14px;
  background: #f8fafc;
}

.input100 {
  padding: 0 48px;
  color: var(--login-text);
  font-family: Poppins-Regular;
  font-size: 15px;
}

.input-icon,
.password-toggle {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.input-icon { left: 18px; }
.password-toggle { right: 16px; padding: 8px; }

.focus-input100 {
  border: 2px solid var(--login-primary);
  border-radius: 14px;
  box-shadow: 0 0 0 4px rgba(180, 16, 30, .1);
}

.input100:focus,
.has-val { height: 100% !important; }

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -4px 2px 26px;
  color: var(--login-muted);
  font-size: 12px;
}

.login-options a {
  color: var(--login-primary);
  font-size: 12px;
  font-family: Poppins-SemiBold;
}

.login100-form-btn {
  height: 56px;
  gap: 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--login-primary), var(--login-primary-dark));
  box-shadow: 0 12px 24px rgba(121, 11, 20, .25);
  font-family: Poppins-SemiBold;
  font-size: 14px;
  text-transform: none;
}

.login100-form-btn:hover {
  background: linear-gradient(135deg, var(--login-primary-dark), #53070e);
  transform: translateY(-1px);
}

.login-visual-content {
  width: min(470px, 100%);
  padding: 24px 26px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, rgba(48, 5, 10, .76), rgba(18, 8, 10, .52));
  box-shadow: 0 18px 44px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
}

.visual-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  font-size: 12px;
}

.visual-badge i { color: #f3d477; font-size: 8px; }

.login-visual-content h2 {
  max-width: 520px;
  margin-bottom: 10px;
  font-family: Poppins-Bold;
  font-size: clamp(25px, 2.8vw, 35px);
  line-height: 1.16;
  letter-spacing: -.035em;
}

.login-visual-content p {
  max-width: 520px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.visual-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  font-size: 12px;
}

.visual-features i { margin-right: 5px; color: #f3d477; }

@media (max-width: 900px) {
  .container-login100 { padding: 0; }
  .wrap-login100 { min-height: 100vh; border-radius: 0; }
  .login100-form { width: 56%; }
  .login100-more { width: 44%; padding: 22px; }
  .login-visual-content { padding: 20px; }
  .login-visual-content h2 { font-size: 25px; }
  .visual-features { gap: 10px; }
}

@media (max-width: 700px) {
  html,
  body,
  .limiter,
  .container-login100,
  .wrap-login100,
  .login100-form {
    max-width: 100%;
    overflow-x: hidden;
  }
  .container-login100 { align-items: stretch; }
  .wrap-login100 { display: flex; flex-direction: column; }
  .login100-form {
    order: 2;
    width: 100%;
    min-height: auto;
    padding: max(30px, env(safe-area-inset-top)) 22px max(24px, env(safe-area-inset-bottom));
  }
  .login100-more {
    display: flex;
    order: 1;
    width: 100%;
    min-height: 340px;
    padding: 18px;
    background-position: center 39%;
  }
  .login-visual-content { width: auto; padding: 14px 16px; border-radius: 16px; }
  .login-visual-content h2,
  .login-visual-content p,
  .visual-features { display: none; }
  .visual-badge { margin: 0; }
  .login-brand { margin-bottom: 36px; }
  .login-heading { margin-bottom: 28px; }
  .login-heading h1 { font-size: 29px; }
  .wrap-input100 { height: 56px; }
  .text-center.p-t-46 { padding-top: 30px; }
  .text-center.p-t-46 .txt2 { display: block; overflow-wrap: anywhere; }
}

@media (max-width: 420px) {
  .login-brand-icon { width: 52px; height: 52px; border-radius: 16px; }
  .login-brand-name { font-size: 16px; }
  .login-brand-company { font-size: 10px; }
  .login-options { flex-wrap: wrap; }
}

@media (max-width: 360px) {
  .login100-form { padding-left: 16px; padding-right: 16px; }
  .login-options { align-items: flex-start; flex-direction: column; }
}

.public-service-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  color: #7b8794;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 7px;
}
.public-service-links a { color: #8f0d18; font-weight: 700; }
