
:root{
	--default-01:#000;
	--default-02:#fff;
	--default-03:#fff;
	--blue-01:#2f3c48;
	--blue-02:#0c1419f2;
	--blue-03:#617a92;
	--orange-01:#ff9900;
	/* Tech Theme Colors */
	--tech-primary: #0ea5e9;
	--tech-primary-glow: rgba(14, 165, 233, 0.5);
	--tech-secondary: #8b5cf6;
	--tech-accent: #06b6d4;
	--tech-dark-bg: #0a0a1a;
	--tech-card-bg: rgba(15, 23, 42, 0.85);
	--tech-card-border: rgba(14, 165, 233, 0.3);
	--tech-text-primary: #f1f5f9;
	--tech-text-secondary: #94a3b8;
	--tech-input-bg: rgba(30, 41, 59, 0.8);
	--tech-gradient: linear-gradient(135deg, var(--tech-primary), var(--tech-secondary));
}

/* ========================================
   TECH LOGIN STYLES
======================================== */

/* Background tecnológico com imagem */
.loginBG-tech {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

.loginBG-tech::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -2;
	background-image: url("../img/background.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.loginBG-tech::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Container principal do login */
.login-container-tech {
	min-height: 100%;
	padding: 1rem;
}

/* Card de Login com efeito glassmorphism */
.login-card-tech {
	background: var(--tech-card-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--tech-card-border);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	width: 100%;
	max-width: 400px;
	box-shadow: 
		0 25px 50px -12px rgba(0, 0, 0, 0.5),
		0 0 40px var(--tech-primary-glow),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Logo principal */
.login-logo-main {
	filter: drop-shadow(0 0 20px var(--tech-primary-glow));
	margin-bottom: 1rem;
}

/* Título do sistema */
.login-title-tech {
	color: var(--tech-text-primary) !important;
	font-weight: 300 !important;
	letter-spacing: 2px;
	text-shadow: 0 0 20px var(--tech-primary-glow);
}

/* Container do formulário */
.login-form-container-tech {
	width: 100%;
	max-width: 320px;
}

/* Labels */
.login-label-tech {
	color: var(--tech-text-secondary) !important;
	font-size: 0.85rem !important;
	margin-bottom: 0.25rem !important;
}

/* Inputs estilizados */
.login-input-tech {
	width: 100%;
}

.login-input-tech .sapMInputBaseInner {
	background: var(--tech-input-bg) !important;
	border: 1px solid var(--tech-card-border) !important;
	border-radius: 10px !important;
	color: var(--tech-text-primary) !important;
	padding: 0.75rem 1rem !important;
	transition: all 0.3s ease !important;
}

.login-input-tech .sapMInputBaseInner:focus,
.login-input-tech .sapMInputBaseInner:hover {
	border-color: var(--tech-primary) !important;
	box-shadow: 0 0 15px var(--tech-primary-glow) !important;
}

.login-input-tech .sapMInputBaseInner::placeholder {
	color: var(--tech-text-secondary) !important;
}

/* Checkbox */
.login-checkbox-tech .sapMCbLabel {
	color: var(--tech-text-secondary) !important;
	font-size: 0.85rem !important;
}

.login-checkbox-tech .sapMCbBg {
	border-color: var(--tech-card-border) !important;
	background: var(--tech-input-bg) !important;
}

.login-checkbox-tech .sapMCbBg.sapMCbMarkChecked {
	background: var(--tech-gradient) !important;
	border-color: var(--tech-primary) !important;
}

/* Links */
.login-link-tech {
	color: var(--tech-text-secondary) !important;
	font-size: 0.85rem !important;
	transition: color 0.3s ease !important;
}

.login-link-tech:hover {
	color: var(--tech-primary) !important;
}

.login-link-highlight-tech {
	color: var(--tech-primary) !important;
	font-weight: 600 !important;
}

.login-link-highlight-tech:hover {
	color: var(--tech-accent) !important;
	text-shadow: 0 0 10px var(--tech-primary-glow);
}

/* Botão de Login */
/* botão */
.sapMBtn.login-button-tech .sapMBtnInner{
  background: var(--tech-gradient) !important;
  border: none !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px var(--tech-primary-glow) !important;

  /* 👇 em vez de padding */
  height: 3rem !important;
}

/* centraliza verticalmente do jeito UI5 */
.sapMBtn.login-button-tech .sapMBtnContent{
  line-height: 3rem !important;
}

/* força texto visível */
.sapMBtn.login-button-tech .sapMBtnText,
.sapMBtn.login-button-tech .sapMBtnContent bdi{
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
}


/* Texto auxiliar */
.login-text-tech {
	color: var(--tech-text-secondary) !important;
	font-size: 0.9rem !important;
}

/* Divisor */
.login-divider-tech {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--tech-card-border), transparent);
}

.login-divider-text-tech {
	color: var(--tech-text-secondary) !important;
	font-size: 0.85rem !important;
	padding: 0 1rem;
}

/* Botões sociais */
.social-buttons-container {
	gap: 1rem;
}

.social-button-tech {
	width: 3rem !important;
	height: 3rem !important;
}

.social-button-tech .sapMBtnInner {
	background: var(--tech-input-bg) !important;
	border: 1px solid var(--tech-card-border) !important;
	border-radius: 12px !important;
	width: 3rem !important;
	height: 3rem !important;
	transition: all 0.3s ease !important;
}

.social-button-tech .sapMBtnIcon {
	color: var(--tech-text-primary) !important;
	font-size: 1.25rem !important;
}

.social-button-tech:hover .sapMBtnInner {
	border-color: var(--tech-primary) !important;
	box-shadow: 0 0 15px var(--tech-primary-glow) !important;
	transform: translateY(-3px) !important;
}

.google-btn:hover .sapMBtnIcon {
	color: #ea4335 !important;
}

.apple-btn:hover .sapMBtnIcon {
	color: #ffffff !important;
}

.linkedin-btn:hover .sapMBtnIcon {
	color: #0077b5 !important;
}

/* Logo secundário */
.login-logo-secondary {
	opacity: 0.8;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
	transition: opacity 0.3s ease;
}

.login-logo-secondary:hover {
	opacity: 1;
}

/* Footer */
.login-footer-tech {
	background: transparent !important;
	border: none !important;
}

.login-footer-link-tech {
	color: var(--tech-text-secondary) !important;
	font-size: 0.85rem !important;
}

.login-footer-link-tech:hover {
	color: var(--tech-primary) !important;
}

.login-settings-btn-tech .sapMBtnIcon {
	color: var(--tech-text-secondary) !important;
}

.login-settings-btn-tech:hover .sapMBtnIcon {
	color: var(--tech-primary) !important;
}

/* ========================================
   RESPONSIVIDADE
======================================== */

/* Tablets */
@media (max-width: 1024px) {
	.login-card-tech {
		max-width: 380px;
		padding: 2rem 1.5rem;
	}
	
	.login-logo-main {
		width: 10rem !important;
	}
}

/* Mobile */
@media (max-width: 599px) {
	.login-card-tech {
		max-width: 100%;
		margin: 1rem;
		padding: 1.5rem 1rem;
		border-radius: 15px;
	}
	
	.login-logo-main {
		width: 8rem !important;
	}
	
	.login-title-tech {
		font-size: 1.25rem !important;
	}
	
	.login-form-container-tech {
		max-width: 100%;
	}
	
	.social-button-tech {
		width: 2.5rem !important;
		height: 2.5rem !important;
	}
	
	.social-button-tech .sapMBtnInner {
		width: 2.5rem !important;
		height: 2.5rem !important;
	}
}

/* ========================================
   END TECH LOGIN STYLES
======================================== */

.sapSuiteUiCommonsTimeline{
	max-width: none !important;
}

.sapUiFormTitleH6 {
	height: 0px !important;
}
.webAplicationPositive {
	color: #00b894 !important;
}
.webAplicationNegative {
	color: #d63031 !important;
}

.tableRanges {
	background-color: #607D8B;
	border: #607D8B 1px solid;
}
.tableLevels {
	background-color:  #90A4AE;
	border: #90A4AE 1px solid;
}
.tableApprovers {
	background-color:  #B0BEC5;
	border: #B0BEC5 1px solid;
}

.loginBG:before {
	content: "";
	position: inherit;
	z-index: -1;  
	display: block;
	opacity: 0.2;
	/* background-image: linear-gradient(var(--blue-01), var(--blue-02)), url("../img/bg-predio.jpg"); */
	/* background-image: url("../img/bg3.jpg"); */
	background-color: #B0BEC5;
	background-size: cover;
	width: 100%;
	height: inherit;
	overflow: hidden;
}


.bg-transparent{
	background-color: rgba(255, 255, 255, 0);
}

.bg-white{
	background-color: GhostWhite;
}

.bg-black{
	background-color:  Black;
}
.bg-grey{
	background-color:  Grey;
}
.bg-golden{
	background-color:  GoldenRod;
}

.img-logo-topo{
	margin-left: 1rem !important;
}
div {
	outline: none !important;
}
section {
	outline: none !important;
}
span {
	outline: none !important;
}

.sectionFill {
	min-height:  460px;
}

.custom-control-center-cost-round{
	padding: 1px 2px 1px 1px;
	background: #227093;
	border-radius: 3px;	
	display: inline;	
	line-height: 1.5em;
	margin-right: 2px;
	color: #FFF;
}

.Login-left{
	height: 22rem;
}
	.Login-left > div {
		width: 190px;
		height: 22rem;
		opacity: 1;
		border-radius: 15px 0px 0px 15px;
		background-image: url("/img/real-estate.jpg");
		background-repeat: no-repeat;
		background-size: cover;
		box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
	}
.Login-left-black>div{
	width: 190px;
	height: 20rem;	
	opacity: 1;
	border-radius: 15px 0px 0px 15px;
	background-color: Black;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
.Login-left-white>div{
	width: 190px;
	height: 20rem;	
	opacity: 1;
	border-radius: 15px 0px 0px 15px;
	background-color: White;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
.Login-left-gold>div{
	width: 190px;
	height: 20rem;	
	opacity: 1;
	border-radius: 15px 0px 0px 15px;
	background-color: gold;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
.Login-left-darkorange>div{
	width: 190px;
	height: 20rem;	
	opacity: 1;
	border-radius: 15px 0px 0px 15px;
	background-color: darkorange;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
.Login-left-indianred>div{
	width: 190px;
	height: 20rem;	
	opacity: 1;
	border-radius: 15px 0px 0px 15px;
	background-color: indianred;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
.Login-left-darkmagenta>div{
	width: 190px;
	height: 20rem;	
	opacity: 1;
	border-radius: 15px 0px 0px 15px;
	background-color: darkmagenta;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
.Login-left-cornflowerblue>div{
	width: 190px;
	height: 20rem;	
	opacity: 1;
	border-radius: 15px 0px 0px 15px;
	background-color: cornflowerblue;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
.Login-left-deepskyblue>div{
	width: 190px;
	height: 20rem;	
	opacity: 1;
	border-radius: 15px 0px 0px 15px;
	background-color: deepskyblue;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
.Login-left-darkcyan>div{
	width: 190px;
	height: 20rem;	
	opacity: 1;
	border-radius: 15px 0px 0px 15px;
	background-color: darkcyan;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
.Login-left-olivedrab>div{
	width: 190px;
	height: 20rem;	
	opacity: 1;
	border-radius: 15px 0px 0px 15px;
	background-color: olivedrab;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
.Login-left-darkslategray>div{
	width: 190px;
	height: 20rem;	
	opacity: 1;
	border-radius: 15px 0px 0px 15px;
	background-color: darkslategray;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
.Login-left-azure>div{	
	width: 190px;
	height: 20rem;	
	opacity: 1;
	border-radius: 15px 0px 0px 15px;
	background-color: azure;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
.Login-left-lightgray>div{
	width: 190px;
	height: 20rem;	
	opacity: 1;
	border-radius: 15px 0px 0px 15px;
	background-color: lightgray;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
.Login-left-darkgray>div{
	width: 190px;
	height: 20rem;	
	opacity: 1;
	border-radius: 15px 0px 0px 15px;
	background-color: darkgray;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
.Login-left-dimgray>div{
	width: 190px;
	height: 20rem;	
	opacity: 1;
	border-radius: 15px 0px 0px 15px;
	background-color: dimgray;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}

.iv-custom-login{
	margin-top: 2rem;
	width: 300px;
	min-height: 100px;
	height: 100%;
	opacity: 0.82;
    background: #fff;
    border-radius: 0 2px 2px 0;
    float: left;
}

.logoCompany{	
	opacity: 1;
	margin-top: 1rem;
	margin-left: 2rem;
}
.logoCompanyTop{	
	opacity: 1;
	margin-top: 1rem;
	margin-left: 2rem;
}
.logoCompanyMiddle{	
	opacity: 1;
	margin-top: 6.5rem;
	margin-left: 2rem;
}
.logoCompanyBottom{	
	opacity: 1;
	margin-top: 10rem;
	margin-left: 2rem;
}

.titleForm{
	align-content: center;
}

.TelaLogin{
	margin-top: 30%;
	min-height: 100px;
	height: 100%;
	opacity: 0.80;
    background: #fff;
    border-radius: 15px 15px 15px 15px;
    float: left;
}
.Login-Panel{
	background-color: #194745;
}

.LogoApp{
	margin-left: 35.5%;
	align-content: center;
}

.btn-login{
	border-radius: 0.25rem;
	font-weight:600;
}
.btn-login>span{
	height: 2rem !important;
	color: white !important;
	background-color: var(--blue-01) !important;
}
.btn-login> :hover{
	color: white !important;
	background-color: grey !important;
}

.iv-custom-company-list{
	width: 300px;
	min-height: 100px;
	height: auto;
    background: #fff;
    border-radius: 2px;
    margin-top: 10px;
    float: left;
    border-top: 6px solid var(--orange-01);
}

.v-custom-company-list {
	width: 300px;
	min-height: 100px;
	height: auto;
	opacity: 0.82;
	border-radius: 0 2px 2px 0;
	float: left;
	align-content: center;
}

.sapMListTblCell.cellBorderRight {
	border-right: 1px solid lightgray;
}

.sapMListTblCell.cellBorderLeft {
	border-left: 1px solid lightgray;
}

.sapMLIB .sapMListSelectedRow{
    background: #e8e8e8;
}

.sapMListTblCell.cellBorderRight {
	border-right: 1px solid lightgray;
}

.sapMListTblCell.cellBorderLeft {
	border-left: 1px solid lightgray;
}

.tinyBorder{
	border: solid 0.5px #CCC;
}

.size1 {
	font-size : 1.5rem;
}
.size2 {
	font-size : 2.5rem;
}
.size3 {
	font-size : 5rem;
}
.size4 {
	font-size : 7.5rem;
}
.size5 {
	font-size : 10rem;
}

@media (max-width:599px) {
	.size1 {
		font-size : 1rem;
	}
	.size2 {
		font-size : 2rem;
	}
	.size3 {
		font-size : 3rem;
	}
	.size4 {
		font-size : 4rem;
	}
	.size5 {
		font-size : 5rem;
	}
}

/* cumpo fiscal */

.receiptPanel {
  width: 100%;
}

.receiptPaper {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.receiptHeader {
  margin-bottom: 6px;
}

.receiptTitle {
  letter-spacing: .3px;
}

.receiptCenter {
  text-align: center;
}

.receiptRight {
  text-align: right;
}

.receiptMono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.receiptSmall {
  font-size: 0.85rem;
  line-height: 1.15rem;
}

.receiptTiny {
  font-size: 0.78rem;
  line-height: 1.05rem;
}

.receiptBold {
  font-weight: 700;
}

.receiptDim {
  opacity: .72;
}

.receiptRow {
  width: 100%;
  margin: 2px 0;
  gap: 6px;
}

.receiptDivider {
  border-top: 2px dashed #111827;
  margin: 10px 0;
  opacity: .85;
}

.receiptDividerSoft {
  border-top: 1px dashed #9ca3af;
  margin: 8px 0 2px 0;
  opacity: .7;
}

.receiptItemsHeader {
  opacity: .9;
}

.receiptList .sapMListUl {
  padding: 0;
}

.receiptItemBlock {
  padding: 6px 0;
}

.receiptTotals {
  margin-top: 4px;
}

.receiptGrandTotal {
  margin-top: 6px;
}
