@charset "utf-8";

input{font-family:"Malgun Gothic","맑은 고딕",sans-serif}
::placeholder{color:#9b9b9b}
input::-webkit-input-placeholder{color:#9b9b9b}
input:-ms-input-placeholder {color:#9b9b9b !important}
input:invalid{box-shadow:none !important}
input[readonly],textarea[readonly],select[disabled]{background-color:#f9f9f9 !important}

body {
    background-color: #f4f4f4;
}

.hidden {
    display: none !important;
}

#nolbal_wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-width: 560px;
    justify-content: space-between;
}
#nolbal_content {
    position: relative;
    width: 400px;
    margin: 64px auto;
}

.box {
    overflow: hidden;
    background-color: #fff;
}

.find-nav__list {
    display: flex;
    border-bottom: 1px solid rgba(155, 155, 155, .5);
}
.find-nav__item {
    position: relative;
    margin: 0 40px;
    color: #9b9b9b;
    font-weight: 700;
}
.find-nav__item--hover,
.find-nav__item--selected {
    color: #4a4a4a;
    font-weight: 800;
}
.find-nav__item--hover::after,
.find-nav__item--selected::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    left: 0;
    height: 2px;
    background-color: #4a4a4a;
}
.find-nav__item a {
    display: block;
    width: 120px;
    height: 56px;
    font-size: 16px;
    line-height: 56px;
    text-align: center;
    text-decoration: none;
}

a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.btn--main {
    width: 344px;
    height: 60px;
    border: 1px solid #ffb000;
    margin-top: 16px;
    background-color: #ffbd28;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}
.btn--main:disabled {
    border: 1px solid #e5e4e4;
    background-color: #f4f4f4;
    color: #9b9b9b;
    cursor: default;
}
