.body-filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1002;
    display: none;    
}

.login-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1rem;
    border-bottom: 1px solid var(--color-lightgray);  
}

.login-top .top-sub {
    display: flex;
    align-items: center;
    gap: 15px;
}
.login-top .top-sub a {
    text-decoration: none;
    color: var(--color-gray3);
}
.login-top .splite-line {
    width: 2px;
    height: 15px;
    background: var(--color-lightgray);
}

.find-wrap {                
    position: relative;
    max-width: 492px;
    min-width: 360px;
    min-height: 100vh;
    margin: 0 auto;
    padding-top: 100px;
    padding-left: 1rem;
    padding-right: 1rem;
}

#logo_link {
    padding: 1rem 0;
    text-align: center;
}

#logo_link a {
    display: block;
}


.find-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 2rem;                
}

.find-nav li {
    width: calc(100% / 2);
    border: 1px solid #EEEEEE;                
}

.find-nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 36px;
    text-decoration: none;
    color: var(--color-dark);                
}

.find-nav .active {
    background: var(--color-deepblue);
    color: var(--color-white);
}

.find-nav .active a {
    color: var(--color-white);
}

.find-title {
    text-align: center;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.find-guide {
    color: var(--color-gray3);
}

.find-btn,
.find-input {
    width: 100%;
    height: 56px;
}

.find-input input {
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-lightgray);
    padding: 0 10px;
    outline-color: transparent;
    transition: outline 0.2s ease;
    font-size: 16px;
}

.find-input input:focus {
    outline-color: var(--color-orange2);
}

.find-btn button {
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-blue);
    background: var(--color-blue);
    color: var(--color-white);
    transition: background 0.2s ease, color 0.2s ease;                
}

.find-btn button:hover {
    background: var(--color-white);
    color: var(--color-blue);
}

.find-table {
    width:100%;
}

.find-table th,
.find-table td {
    padding: 0.5rem 0;
    text-align: center;
    border: 1px solid var(--color-lightgray);
}

.find-table th {
    background: #E4E6EB;
}

.find-table td {
    color: var(--color-gray3);
}

#login_footer {
    margin-top: 100px;
    padding-bottom: 2rem;
    font-size: 12px;
    text-align: center;
    color: #9FA1A7;
}