.login-page {
	height: 60vh;
}

.txt_line {
      width:70px;
      padding:0 5px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
  }

.truncate200 {
  display: inline-block;     /* 또는 block */
  max-width: 200px;          /* 원하는 너비 지정 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.truncate300 {
  display: inline-block;     /* 또는 block */
  max-width: 300px;          /* 원하는 너비 지정 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
