@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --principal_color: #a81c1c;
    --color_white: #ffff;
    --second_color: #d23d2f;
    --three_color: #89888c;
}

body {
    font-family: 'Roboto', sans-serif;
}

.btn-primarys {
    background-color: var(--principal_color);
    border-color: var(--principal_color);
    color: var(--color_white);
}

.btn-primarys:hover {
    background-color: var(--principal_color);
    border-color: var(--principal_color);
    color: var(--color_white);
}

.btn-primarys:focus {
    outline: none;
    box-shadow: none;
}

.btn-primarys:disabled,
.btn-primarys.disabled {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.rounded-pill {
    border-radius: 50px;
    font-size: 20px;
}

.form-control {
    padding: 1.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 12px;
    border-color: var(--three_color);
}

.form-control::placeholder {
    font-family: 'Roboto', sans-serif;
}

.form-control:focus {
    border-color: var(--three_color);
    box-shadow: none;
    outline: none !important;
}

.password-input {
    padding-right: 40px;
}

.password-toggle {
    position: absolute;
    margin-left: 380px;
    margin-top: -26px;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--three_color);
}

.forgot {
    text-decoration: none !important;
    color: var(--three_color);
    cursor: pointer;
    margin-left: -16px;
    font-weight: bold;
}

.forgot:hover {
    text-decoration: none !important;
    color: var(--three_color);
    cursor: pointer;
    margin-left: -16px;
}

.form-check {
    display: flex;
    align-items: center;
}


.confirmbtn {
    background-color: var(--principal_color);
    color: var(--color_white);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
}

.confirmbtn:focus {
    outline: none;
}

.input-error {
    border: 1px solid red !important;
}

select:invalid {
    border-color: red !important;
}

/* Tablets en modo horizontal */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .password-toggle {
        position: absolute;
        right: 40px;
        top: 223px;
        transform: translateY(-50%);
        cursor: pointer;
        color: var(--three_color);
    }
}

/* Tablets en modo vertical */
@media screen and (min-width: 480px) and (max-width: 767px) {
    .password-toggle {
        position: absolute;
        right: 40px;
        top: 223px;
        transform: translateY(-50%);
        cursor: pointer;
        color: var(--three_color);
    }
}

/* Teléfonos en modo horizontal */
@media screen and (max-width: 479px) {
    .password-toggle {
        position: absolute;
        right: 40px;
        top: 223px;
        transform: translateY(-50%);
        cursor: pointer;
        color: var(--three_color);
    }
}

/* Teléfonos en modo horizontal */
@media screen and (max-width: 820px) {
    .password-toggle {
        position: absolute;
        right: 40px;
        top: 223px;
        transform: translateY(-50%);
        cursor: pointer;
        color: var(--three_color);
    }
}

@media only screen and (min-device-width: 768px) {
    .password-toggle {
        position: absolute;
        right: 40px;
        top: 223px;
        transform: translateY(-50%);
        cursor: pointer;
        color: var(--three_color);
    }
}

.badge {
    padding: 0.5rem;
    color: #fff;
    border-radius: 0.25rem;
    display: inline-block;
    width: 80px;
    text-align: center;
    font-size: 17px !important;
}

.bg-success {
    background-color: #28a745;
}

.bg-danger {
    background-color: var(--principal_color) !important;
}

.acciones-registro .fa-pencil-alt {
    color: #0f23d3;
    font-size: 20px !important;
    cursor: pointer;
}

.acciones-registro .fa-trash {
    color: var(--principal_color);
    font-size: 20px !important;
    cursor: pointer;
}

.sorting{
    cursor: pointer !important;
}

.input-container {
    position: relative;
    display: inline-block;
  }
  
  .input-container input {
    width:665px;
    padding-right: 30px; /* ajustar para que el texto no se superponga con el icono */
  }
  
  .input-container i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #ccc;
  }
  
