.containerprincipal{
  width: 90%;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: white;
  border-radius: 15px;
  padding: 10px 20px 20px 20px;
}

body{
  background-color: rgb(230, 230, 230);
}

.nav-tabs .nav-item .nav-link{
  color: black;
}

/* NAVBAR */
.logo-image{
  margin: 10px 30px 10px 20px;
  width: 110px;
}
  
.navbar{
  font-size: 16px;
  background-color: black;
  color: white;
}

.navbar 
.nav-link, 
.navbar-brand{
  color: white;
}

.nav-link.active{
  color: #E66B1D !important;
  font-weight: bold;
}

.nav-link:hover{
  color: #E66B1D;
}

.navbar-brand:hover{
  color: #E66B1D !important;
}

.tabAdmin{
  padding: 30px;
}


/******************/
  .botonsalir{
    background-color: #F0AD20;
    color: white;
    font-size: 18px;
    width: 30px;
    height: 30px;
    border-color: #F0AD20;
    border-style: solid;
}

.resumen{
  font-size: 30px; 
  font-weight: bold;
  text-align: left;
  color: #F0AD20;
}

html,body { 
	height: 100%; 
}

.global-container{
	height:100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f5f5f5;
}

.card-title{ font-weight:300; }

.btn{
	font-size: 14px;
	margin-top:20px;
}


.login-form{ 
	width:330px;
	margin:20px;
}

.sign-up{
	text-align:center;
	padding:20px 0 0;
}

.alert{
	margin-bottom:-30px;
	font-size: 13px;
	margin-top:20px;
}


.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

/* Add some margins for each label */
.form-inline label {
  margin: 5px 10px 5px 0;
}

/* Style the input fields */
.form-inline input {
  vertical-align: middle;
  margin: 5px 10px 5px 0;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* Style the submit button */
.form-inline button {
  padding: 10px 20px;
  background-color: dodgerblue;
  border: 1px solid #ddd;
  color: white;
}

.form-inline button:hover {
  background-color: royalblue;
}

/* Add responsiveness - display the form controls vertically instead of horizontally on screens that are less than 800px wide */
@media (max-width: 800px) {
  .form-inline input {
    margin: 10px 0;
  }

  .form-inline {
    flex-direction: column;
    align-items: stretch;
  }
}

