/*
  ---------------------------------------------------------------------
  styleusers.css - Modulo registro de usuarios 
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  APP SCGeo - Cidades Inteligentes
  Author:Rafael Valdemiro Theodorovicz
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  copyright -  © 2025 CJR Enterprise SA
  Versao 6.2.13 - 03/2025
  ---------------------------------------------------------------------
  padding: 10px 5px 15px 20px;
o preenchimento superior é de 10px
o preenchimento direito é 5px
o preenchimento inferior é 15px
o preenchimento esquerdo é 20px
*/

.imagem-Module-Users-All-Reg{
  height: 36px;
  width: 36px;
  border-radius: 50%;
}

.imagem-Module-Users-Record{
  background: #d6bcffe8;
  border-radius: 50%;
  margin-top: 2px;
  padding: 2px;
  height: 34px;
  width: 34px;
}

.tableNoBorder100{
  border: 0px solid transparent;
  background-color: transparent;
  width: 100%;
  border-collapse: collapse;
}
.noBorder {
  border: 0px solid transparent;
  padding: 0px 0px;
}

.input-New-foto {
  background: #bffdff2f;
  width: 240px;
  height: 360px;
  margin-left: 9px;
  margin-top: 6px;
  margin-bottom: 6px;
  border-radius: 6px;
}

.input-group-foto {
  background: #bffdff2f;
  width: 140px;
  height: 210px;
  margin: 4px;
  border-radius: 6px;
}


.input-group {
  display: flex;
  gap: 10px;
  position: relative;
  padding: 4px 0 0;
  width: 100%;
  margin-bottom: 10px;
  margin-top: 0px;
}

.input-text {
  width: 100%;
  border: none;
  border-bottom: 1px solid #424242;
  border-radius: 0 !important;
  outline: 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #b9b69d;
  padding: 1px 0;
  background: transparent;
  transition: border-color 0.2s;
  margin-bottom: 1px;
}

.input-text::placeholder {
  color: transparent;
}

.input-text:placeholder-shown ~ .input-text-label {
  font-size: 0.95em;
  cursor: text;
}

.input-text::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.8) brightness(70%) sepia(40%) saturate(10000%) hue-rotate(20deg);
}
.input-text input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
  
.input-text::-webkit-inner-spin-button,
.input-text::-webkit-outer-spin-button {
  all: unset; 
  min-width: 23px;
  min-height: 44px;
  margin: 8px;
  padding: 0px;
  background-image: 
  linear-gradient(to top, transparent 0px, transparent 16px, #000000 19px, 
                #000000 26px, transparent 26px, transparent 34px, #18aaff 34px,
                #00a2ff 36px,transparent 36px, transparent 40px),
  linear-gradient(to right, transparent 0px, transparent 9px, #18aaff 9px, #00a2ff 11px, transparent 11px, transparent 21px);
  transform: rotate(90deg) scale(0.45, 0.6);
  cursor:pointer;    
}

.input-text-label {
  position: absolute;
  display: block;
  transition: 0.2s;
  font-size: 1em;
  font-weight: bold;
  color: #007a2f;
  pointer-events: none;
}

.input-text:focus {
  color: #ffb657;
  padding-bottom: 1px;
  border-width: 1px;
  border-image: linear-gradient(to right, #889700, #565f00);
  border-image-slice: 1;
}

.input-text option {
	background-color: #080400;
  color:#a3ceff;
}

.input-text:disabled {
  color: #8a856a;
  cursor: not-allowed;
}

.input-text:disabled ~ .input-text-label {
  color: #507057;
}

.input-text:focus ~ .input-text-label {
  color: #00a740;
}

.input-text:not(:placeholder-shown) ~ .input-text-label,
.input-text:focus ~ .input-text-label {
  position: absolute;
  display: block;
  transition: 0.2s;
  font-size: 1em;
  font-weight: bold;
  top: -0.8em;
}

.input-text:required,
.input-text:invalid {
  box-shadow: none;
}

.myUser-file{
  border-radius: 6px;
}

.myUser-file input[type="file"] {
  height: 0;
  overflow: hidden;
  width: 0;
}

.myUser-file input[type="file"] + label {
  background: #200d366b;
  border: 2px solid rgba(180, 180, 180, 0.6);
  border-radius: 6px;
  color: #b2d2fd;
  cursor: pointer;
  display: inline-block;
	font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 4px;
  outline: none;
  padding: 6px 18px;
  position: relative;
  text-shadow: 1px 1px 1px rgb(29, 29, 29);
  transition: all 0.3s;
  vertical-align: middle;
}

.myUser-file input[type="file"] + label {
  background: #200d366b;
  border: 1px solid rgba(180, 180, 180, 0.295);
  border-radius: 6px;
  color: #d1e5ff;
  cursor: pointer;
  display: inline-block;
	font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 4px;
  outline: none;
  padding: 4px 20px;
  position: relative;
  text-shadow: 1px 1px 1px rgb(29, 29, 29);
  transition: all 0.3s;
  vertical-align: middle;
}

.myUser-file input[type="file"] + label:hover{
  background: #bebebe48;
  border: 1px solid rgba(83, 177, 255, 0.719);
  color: rgb(224, 224, 224);
}