/* 로그인페이지 */

.loginContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35rem;
  max-width: calc(100% -2rem);
}

.loginContainer .titBox {
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  background: var(--Primary1);
  border-radius: 0.5rem 0.5rem 0 0;
}

.loginContainer .titBox img {
  width: 7.8125rem;
}

.loginContainer .titBox p {
  color: #fff;
  font-size: 1.3125rem;
  font-weight: 700;
  padding-top: 12px;
}

.loginContainer .conBox {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  border: 0.0625rem solid var(--Greyscale4);
  border-radius: 0.5rem;
}

.loginContainer .titBox + .conBox {
  border-radius: 0 0 0.5rem 0.5rem;
}

.loginContainer .conBox ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
}

.loginContainer .conBox ul li {
  width: 100%;
}

.loginContainer .conBox ul li input {
  width: 100%;
  border-radius: 0.5rem;
}

.loginContainer .conBox .buttonArea {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.loginContainer .conBox .buttonArea a {
  /* width: 100%; */
  flex-grow: 1;
  box-sizing: border-box;
  font-size: 1rem;
  font-weight: 700;
}

.loginContainer .conBox a.txtBtn {
  display: block;
  margin-top: 2rem;
  color: var(--Greyscale5);
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.loginContainer .conBox .tit {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  color: var(--Greyscale8);
}

.loginContainer .conBox .tit > .blue {
  color: var(--Primary1);
}

.loginContainer .conBox .txt {
  font-size: 1rem;
  text-align: center;
  color: var(--Greyscale8);
}

@media (max-width: 960px) {
  .loginContainer {
    max-width: calc(100% - 40px);
  }
}

/* dashboard */

.dashboard .dashBox {
  padding: 1.875rem;
  border-radius: 1rem;
  background-color: var(--Greyscale0);
}

.dashboard .dashBox .dashBoxTit {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1.25rem;
}

.dashboard .dashBox .dashBoxTit .chartLabel,
.dashboard .dashBox .dashBoxTit .chartLabel li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.375rem;
}

.dashboard .dashBox .dashBoxTit .chartLabel .crcl {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}

.dashboard .dashBox .dashBoxCon {
  width: 100%;
  padding: 1rem;
  background-color: #fff;
  box-sizing: border-box;
  overflow: auto;
}

@media (max-width: 960px) {
  .dashboard .dashBox {
    padding: 1.25rem;
  }
}

/* VC-BA100S0 */

#tree {
  min-height: 300px;
  border: 1px solid var(--Greyscale4);
  overflow-y: auto;
}

.treeControl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--Greyscale4);
  border-top: 0px;
}

.treeControl button {
  width: 100%;
  border: 1px solid var(--Greyscale4);
  border-radius: 4px;
  padding: 4px;
  font-size: 16px;
  color: var(--Greyscale6);
}

/* VC-CD100S0 */

.cmtList {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
}

.cmtList p:first-child {
  color: var(--Greyscale6);
}

.cmtList p:last-child::before {
  content: "└";
  margin-right: 0.375rem;
  font-weight: 200;
  color: var(--Greyscale6);
}

/* ITSM 변경목록 추가 - 20240418 */
.titTopBox {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.titTopBox .rightItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.titTopBox .rightItem .selectric .label {
  border-radius: 0.5rem 0 0 0.5rem;
}

table.board thead > tr th.check > fieldset,
table.board tbody > tr td.check > fieldset {
  justify-content: center;
}
