* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.section_find {
    font-family: NotoSansKR-Regular;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: fit-content;
    margin: 0;
}

.find_form{
    border-top: 1px solid #333;
    padding-top: 40px;
}

.find-container {
    width: 680px;
    padding: 0px 40px 120px 40px;
    text-align: center;
}

.find-container h1 {
    margin-top: 120px;
    margin-bottom: 80px;

    font-family: NotoSansKR-Bold;
    font-size: 55px;
    color: #000000;
    letter-spacing: -2px;
    text-align: center;
    line-height: 76px;
    font-weight: 700;
}

.find-container input[type="email"]{
    width: 100%;
    height: 60px;

    padding-left: 20px;
    margin-bottom: 16px;

    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.05);
    border-radius: 6px;

    font-family: NotoSansKR-Regular;
    font-size: 18px;
}

.find-container input[type="email"]:focus{
    border: 1px solid #173582;
    outline: none;
}

.find-container input[type="email"]::placeholder{
    color: #ddd;
}

.find-btn {
    width: 300px;
    height: 64px;
    padding: 14px;
    border: 1px solid #173582;
    border-radius: 32px;
    background: #2050DD;
    cursor: pointer;

    font-family: NotoSansKR-Regular;
    font-size: 20px;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    text-align: center;
    line-height: 30px;
    font-weight: 400;
}

.find-btn:disabled {
    background: #F4F4F4;
    border: 1px solid #EEEEEE;
    color: #E0E0E0;
}

.n_txt1{
    letter-spacing: -0.5px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    text-align: left;

    margin: 0;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 28px;
    margin-bottom: 60px;
    min-height: 49px;

    display: flex;          /* 아이콘 + 텍스트 한 줄 정렬 */
    align-items: center;    /* 세로 가운데 정렬 */
}

.n_txt1.default-msg {
    color: #333333;
}
.n_txt1.default-msg::before {
    content: "";
    display: inline-block; /* flex item 이라 사실 block 여도 됨 */
    width: 18px;
    height: 18px;
    margin-right: 8px;

    background-image: url('/templets/main/img/Info_B@3x.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.n_txt1.error-msg{
    color: #EC1B1B;
}
.n_txt1.error-msg::before {
    content: "";
    display: inline-block; /* flex item 이라 사실 block 여도 됨 */
    width: 18px;
    height: 18px;
    margin-right: 8px;

    background-image: url('/templets/main/img/Info@3x.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.success-msg{
    color: #0068FE;
}
.n_txt1.success-msg::before {
    content: "";
    display: inline-block; /* flex item 이라 사실 block 여도 됨 */
    width: 18px;
    height: 18px;
    margin-right: 8px;

    background-image: url('/templets/main/img/Success@3x.png');
    background-size: contain;
    background-repeat: no-repeat;
}