@import url('https://fonts.googleapis.com/css2?family=Jost&family=Merriweather+Sans&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
    box-sizing: border-box;
}

.wrapper {
    z-index: 1;
    position: relative;
    width: (100% - 0%);
    height: 70px;
    top: 0;
    display: flex;
}

header {
    position: fixed;
    background: #0500bb;
    padding: 20px;
    width: 100%;
    height: 30px;
}

.left h3 {
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 900;

}

.logout {
    padding: 5px;
    float: right;
    margin-right: 40px;
    margin-top: -30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #0500bb;
    background: #fff;
    text-decoration: none;
    transition-property: background;
}

.logout:hover{
    background: #45A59B;
    color: #133935;
}

.wrapper .sidebar {
    background: #fff;
    margin-top: 70px;
    padding-top: 30px;
    position: fixed;
    left: 0;
    width: 270px;
    height: 100%;
    transition: 0.4s;
    transition-property: left;
    color: #0500bb;
    
    

}

.sidebar .logo {
    width: 150px;
    height: 120px;
    margin-bottom: 10px;
    margin-left: 10px;

}

.sidebar .search {
    text-align: center;
    border: 0;
    border-radius: 15px;
    width: 110px;
    height: 20px;
}

.sidebar i {
    padding-left: 10px;
    color: #0500bb;


}

.sidebar .menu {
    margin-top: 20px;
    color: #0500bb;
    display: block;
    width: 100%;
    line-height: 25px;
    text-decoration: none;
    padding-left: 35px;
    box-sizing: border-box;
    transition: 0.3s;
    transition-property: background;
    overflow: auto;
}

.sidebar .menu_large {
    margin-top: 20px;
    color: #0500bb;
    display: block;
    width: 100%;
    line-height: 30px;
    text-decoration: none;
    padding-left: 40px;
    box-sizing: border-box;
    transition: 0.3s;
    transition-property: background;

}
.sidebar .menu:hover {
    background: #0500bb;
    color: #fff;
}

.sidebar .menu_large:hover {
    background: #0500bb;
    color: #fff;
}

.sidebar-btn {
    z-index: 1;
    color: #0B4B3D;
    position: fixed;
    cursor: pointer;
    left: 380px;
    font-size: 20px;
    margin: 5px 0;
    transition: 0.3s;
    transition-property: color;
}

.sidebar-btn:hover {
    color: #8BBCB1;

}

.wrapper.collapse .sidebar {
    left: -180px;
    width: 70px;
    background: #E2EBE9;

}

.wrapper.collapse .sidebar a span {
    display: none;
}

.wrapper.collapse .sidebar a {
   font-size: 20px;
   margin-left: 195px;
   width: 80px;
   transition-property: background;
   transition: 0.3s;

}

.wrapper.collapse .sidebar a:hover {
   font-size: 20px;
   margin-left: 195px;
   width: 80px;
   background: #E2EBE9;

}

.wrapper.collapse .sidebar .logo {
   width: 60px;
   height: 50px;
   margin-left: 190px;
   }

.wrapper.collapse .main-content {
  
   margin-left: 120px;
   }



#check {
    display: none;
}

.wrapper .main-content {
    width: (100% - 450px);
   
    height: 100%;
    margin-top: 80px;
    margin-left: 280px;
    padding: 15px;
    overflow: visible;
    


}

.main-content p {
    font-size: 30px;

}

.linea {
  border-top: 1px solid;
  height: 2px;
  padding: 0;
  max-width: 1600px;
  min-width: 500px;
  width: 100%;
  margin: 20px auto 0 auto;
  border-color: #E6E6E6;
}


.formulario {

  width: 300px;
  height: 600px;
}

.formulario label, input, select {
  display: inline-block;
  margin-top: 10px;


}

.formulario input, select, textarea {
  width: 500px;
  margin-bottom: 20px;
}

