/*Size for icon delete, edit and other options*/
.form-icon {
  width: 17px;
}

.login-form{
  display: flex;
  flex-direction: column;
  align-items: center;  
  justify-content: center;
  height: 100vh;
  /*background: rgb(28,92,191);
  background: linear-gradient(139deg, rgba(28,92,191,1) 0%, rgba(81,84,179,1) 35%, rgba(200,68,144,1) 100%);*/
  background: #e5ebec; /*#e8f0f3 #e3e3e3*/
}

.login-form form{
  background: white;
  padding: 2rem 0 2rem 0;
  border-top: 5px solid #dc3545;
}

.login-form h6{
  text-align: center;
  color: rgb(54 68 90);
  font-weight: bold;
  font-size: 1.2rem;
}
.login-form input, button{
  border-radius: 0 !important;
}
.login-form button{
  width: 100%;
  border: none;
  margin-top: 1rem;  
  height: 2.5rem;
}
.login-form label{
  font-size: .7rem;
  font-weight: bold;
}

.message-form{
  color:#6fa8fd; 
  font-weight: bold;
  font-size: .78em;
  text-align: center;
}

.copyright{
  font-size: .9rem;
  color:#9a9a9a;
  padding-top: .5rem;
}
.copyright a{
  text-decoration: none;
  color:inherit;
}
.copyright a:hover{
  color: inherit;
}

/* Table Data with Header and First Column Fixed */
.table-head-col-fixed thead th{
  padding: 8px 2px 8px 2px;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #fde3e9 !important; /*#ebf2fc !important;*/
  border-bottom-color: #dee2e6 !important;
}

.table-head-col-fixed thead th:first-child{
  position: sticky;
  left: 0;
  z-index: 2;
}

.table-head-col-fixed tbody th{
  position: sticky;
  left: 0;
  z-index: 1;
}

.table-col-options{
  background: white !important; 
  font-weight: normal;
}
.table-col-options div{
  display: inline-flex;
  font-weight: normal;
}
.table-col-options a{
  padding: 0 2.5px 0 2px;
  text-decoration: none;
}
/* Table Data with Header and First Column Fixed */

.table-nowrap{
  white-space: nowrap  
}
.text-wrap{
  white-space: normal;
}
