/* inter-300 - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local(''),
       url('../fonts/inter-v12-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/inter-v12-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(''),
       url('../fonts/inter-v12-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/inter-v12-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(''),
       url('../fonts/inter-v12-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/inter-v12-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

.form-control.is-invalid {
      border-color: red;
}

.form-control.is-valid {
      border-color: green;
}
  
.client{
  border: 1px solid #0ec8f6;
  font-size: 15px;
  font-family: Arial, Verdana;
  padding-left: 7px;
  padding-right: 7px;
  padding-top: 5px;
  padding-bottom: 5px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  font-weight:bold;
  padding:10px;
  text-decoration:none;
  border-radius:10px;"
  background: #0ec8f6;
  background: linear-gradient(left, #0ec8f6, #0778ce);
  background: -moz-linear-gradient(left, #0ec8f6, #0778ce);
  background: -webkit-linear-gradient(left, #0ec8f6, #0778ce);
  background: -o-linear-gradient(left, #0ec8f6, #0778ce);
  color: #FFFFFF;
  
}

.client:hover
  {
  background: #0778ce;
  background: linear-gradient(left, #0778ce, #0ec8f6);
  background: -moz-linear-gradient(left, #0778ce, #0ec8f6);
  background: -webkit-linear-gradient(left, #0778ce, #0ec8f6);
  background: -o-linear-gradient(left, #0778ce, #0ec8f6);
  color: #FFFFFF;
  
}

.input-group {
        display: flex;
        gap: 10px; /* Ajusta la separación entre los inputs */
}

.input-group > div {
        flex: 1;

}

.linkblue
  {
  color:#006aff;
  cursor:pointer;
  text-decoration:none;
}

.input-group {
  position: relative;
}

.input-group button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
  border: none;
  background: none;
  padding: 0.5rem;
  cursor: pointer;
}

.input-group button:focus {
  outline: none;
}
  
#togglePassword img {
  width: 25px;
  height: 25px;
}


.alert {
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}


.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}