.login_box {
    margin-top: 1.2rem;
    display: grid;
}

.login_title{
    font-size: 2rem;
    font-weight: 600;
    word-break: keep-all;
}

.input_id{
    background: #b7d6ff5b;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 200;
    margin-bottom: 10px;
    padding: 5px 5px;
}

.input_pw{
    background: #b7d6ff5b;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 200;
    margin-bottom: 10px;
    padding: 5px 5px;
}

.small_txt{
    margin: 0;
}

.save-id-box{
    margin-bottom: 20px;
}

.login_box > button{
    background-color: rgb(16, 146, 252);
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    font-weight: 400;
    display: block;
    padding: 5px 5px;
}

.btn_group{
    display: flex;
    margin-top: 1.2rem;
    gap: 10px;
    align-items: center;
}

.btn_group2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0.8rem;
    gap: 1rem;
}

.btn_group > button{
    background: none;
    color: rgb(56, 56, 56);
    font-size: 1rem;
    font-weight: 400;
    min-height: 3rem;
    border-radius: 2px;
}

.subBtn_group{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    align-content: center;
}

.subBtn_group > a{
    border: 1px solid var(--background_border);
    padding: 5px 10px;
}

.btn_group2 > button{
    background: none;
    border: 1px solid rgb(210, 210, 210);
    color: rgb(56, 56, 56);
    font-size: 1.2rem;
    font-weight: 400;
    min-height: 3rem;
    
}

.fullcolumn{
    grid-column: 1/3;
}

.name_box {
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid var(--background_border);
}

.name_box > p {
    font-size: 2rem;
    font-weight: 500;
}

.safety_box {
    margin-top: 20px;
}

.safety_strong {
    color: rgb(240, 142, 30);
}

.flex-btn{
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.visit_list{
    margin-top: 1rem;
}

.main-btn{
    /* padding: 20px 0; */
}

.logout{
    margin-left: auto;
    /* border: 1px solid var(--background_border); */
    color:var(--text);
}

#popupOverlay{
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
}
#popupBox{
  background:#fff;
  width: min(600px, 92vw);
  max-height: 80vh;
  border-radius: 12px;
  overflow: auto;
  padding: 16px;
}
.popupHead{
  display:flex; justify-content: space-between; align-items:center;
}
