/*login*/
.svg-responsivo {
    width: 100%;
    height: auto;
    max-width: 50px;
}

.body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: sans-serif;
}

.tarjeta {
  border: 1px solid #ddd;
  border-top: 4px solid #5403D9; /* naranja */
  border-radius: 6px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pie{
    position: fixed;
    width:100%;
    height:5rem;
    bottom:0px;
    background: #6700a3;
    background: linear-gradient(90deg, rgba(103, 0, 163, 1) 0%, rgba(52, 0, 130, 1) 50%, rgba(0, 3, 59, 1) 100%);
    text-align:center;
    color: white;
    z-index:0;
}
.login-box {
    width: 320px;
    height: 400px;
    background: #F4F4F4;
    color: #000;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 20px 30px;
}

.login-box .avatar {
    width: 75px;
    height: 75px;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

.login-box h1 {
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
    font-size: 22px;
}

.login-box label {
    margin: 0;
    padding: 0;
    font-weight: bold;
    display: block;
}

.login-box p {
    margin: 0;
    padding: 0;
    font-weight: bold;
    display: block;
}

.login-box input {
    width: 100%;
    margin-bottom: 20px;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    outline: none;
    height: 40px;
    color: #000;
    font-size: 18px;
}

#password_clave::placeholder {
    color: darkgrey;
}

.login-box button[type="submit"] {
    border: none;
    outline: none;
    height: 40px;
    padding: 5px 15px;
    background: #2A006F;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
}

.boton-ver {
    border: none;
    background: #F4F4F4;
}

.icon {
    color: #00356F;
}

.login-box button[type="submit"]:hover {
    cursor: pointer;
    background: #fff;
    color: #2A006F;
    border: solid 2px #00356F;
}

.login-box a {
    text-decoration: none;
    font-size: 12px;
    line-height: 20px;
    color: darkgrey;
}

.login-box a:hover {
    color: #fff;
}

/*main*/

.wrapper {
    min-height: 100vh;
}

#sidebar {
    width: 250px;
    min-height: calc(100vh - 56px);
    transition: all 0.3s;
}

#sidebar.collapsed {
    width: 70px;
}

#sidebar a {
    color: #252525;
    transition: 0.2s;
    text-decoration: none;
}

.content {
    background: #f8f9fa;
}

.arrow {
    transition: transform 0.3s ease;
}

.menu-link[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
}

#sidebar a:hover {
    background: #e9ecef;
    border-radius: 5px;
}

#sidebar .collapse a {
    font-size: 14px;
}

#sidebar a.active {
    background: #0d6efd;
    color: #fff !important;
    border-radius: 6px;
}

#sidebar.collapsed {
    width: 70px;
}

#sidebar.collapsed span {
    display: none;
}

#sidebar.collapsed .arrow {
    display: none;
}

.color_barra{
    background: #5c088c;
background: linear-gradient(90deg, rgba(92, 8, 140, 1) 0%, rgba(52, 0, 130, 1) 50%, rgba(0, 3, 59, 1) 100%);
}

/*media querys*/
@media (max-width: 768px) {
    #sidebar {
        position: fixed;
        left: -250px;
        top: 56px;
        height: 100%;
        z-index: 1000;
    }

    #sidebar.collapsed {
        left: 0;
        width: 250px;
    }
}

