.input {
    width: calc(100% - 20px);
    border: none;
    outline: none;
    padding: 0px 10px 0px 10px;
    background-color: transparent;
    box-sizing: content-box;
    color: white;
    font-size: 0.9rem;
}

.input::placeholder {
    color: #a3a3a3;
}

.select {
    background-color: #000000;
    display: inline-block;
    font: inherit;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #cacaca;
    outline: none;
    padding-left: 10px;
    color: white;
    font-size: 0.9rem;
}

.input-checkbox {
    outline: none;
    appearance: none;
    margin: 0px auto;
    padding: 0px;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-checkbox:after {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-image: url(../../iconos/others/checkbox.png);
    background-repeat: no-repeat;
    background-position: center;
}

.input-checkbox:checked:after {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-image: url(../../iconos/others/checkbox-check.png);
    background-repeat: no-repeat;
    background-position: center;
}

.input-checkbox:not(:disabled):hover {
    background-color: rgba(255, 255, 255, 0.226);
    border-radius: 50%;
}

.text-align-right {
    text-align: right;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    border-radius: 4px;
    margin-right: 2px;
    opacity: 0.9;
    filter: invert(0.9);
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    border-radius: 4px;
    margin-right: 2px;
    opacity: 0.9;
    filter: invert(0.9);
}


input[type="radio"] {
    appearance: none;
    margin: 0px auto;
}

input[type="radio"]:after {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    line-height: 14px;
    border: 2px solid grey;
    border-radius: 3px;
    vertical-align: bottom;
}

input[type="radio"]:checked:after {
    width: 10px;
    height: 10px;
    background-color: #eda500;
    border: 2px solid white;
}

input[type="file"], .input-check-disabled {
    display: none;
}

textarea {
    resize: none;
}


select::-webkit-scrollbar {
    width: 5px;
    height: 14px;
  }
  
  select::-webkit-scrollbar-track {
    border: rgb(180, 180, 180);
    background-color: #1b1b1b;
  }
  
  select::-webkit-scrollbar-thumb {
    background-color: #d1d1d1;
    border: 1px solid rgb(193, 193, 193);
    border-radius: 20px;
  }
  
 input[type="password"] {
    letter-spacing: 4px; /* Ajusta el espaciado entre los puntos */
  
}
input[type="password"]::placeholder {
    font-family: 'Montserrat';
    font-size: 0.9rem;
    letter-spacing: 0px;
}
input[type="password"]::selection {
    font-size: 0.9rem;
}
input[type=password]:not(:placeholder-shown) 
{
  letter-spacing: 2px;
  font-family: 'pass', 'Roboto', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
}
.input-token
{
    width: calc(100% - 20px - 4px - 20px);
    outline: none;
    height: calc(100% - 4px - 20px);
    margin: 0px 10px;
    background-color: transparent;
    box-sizing: content-box;
    color: white;
    padding: 5px;
    font-size:2rem;
    text-align: center;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
    margin: 0px auto;
}



input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
button
{
    all: unset;
}