.find-auth-page,
.find-auth-page * {
    box-sizing: border-box;
    font-family: 'Poppins', 'Noto Sans KR', sans-serif;
}

.find-auth-page {
    min-height: calc(100vh - 80px);
    padding: 32px 16px 48px;
    background: #f4f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.find-auth-wrap {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.find-auth-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    padding: 30px 28px 26px;
    box-shadow:
        0 18px 42px rgba(120, 145, 150, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.find-auth-head {
    text-align: center;
    margin-bottom: 22px;
}

.find-auth-head h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.03em;
}

.find-auth-sub {
    margin-top: 8px;
    font-size: 13px;
    color: #7b879a;
    line-height: 1.6;
}

.find-auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.find-auth-tabs button {
    flex: 1;
    height: 44px;
    border: 1px solid #e6ebf3;
    border-radius: 12px;
    background: #f8fbff;
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.find-auth-tabs button.on {
    background: linear-gradient(180deg, #2c63ff 0%, #1447ef 100%);
    border-color: #1e4fff;
    color: #fff;
    box-shadow: 0 10px 20px rgba(30, 79, 255, 0.18);
}

.find-method-switch {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.find-radio {
    flex: 1;
    position: relative;
}

.find-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.find-radio label {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #e7ecf3;
    border-radius: 12px;
    background: #fff;
    color: #4b5563;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
    padding: 0 12px;
    text-align: center;
}

.find-radio label::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid #b9c3d4;
    background: #fff;
    transition: .2s ease;
    flex: 0 0 14px;
}

.find-radio input[type="radio"]:checked + label {
    border-color: #cfe0ff;
    background: #f5f9ff;
    color: #1e4fff;
    box-shadow: 0 8px 18px rgba(30, 79, 255, 0.08);
}

.find-radio input[type="radio"]:checked + label::before {
    border-color: #1e4fff;
    background:
        radial-gradient(circle at center, #1e4fff 0 45%, #ffffff 46% 100%);
}

.find-panel {
    display: none;
}

.find-panel.on {
    display: block;
}

.find-field {
    margin-bottom: 14px;
}

.find-label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
}

.find-input,
.find-select {
    width: 100%;
    height: 48px;
    border: 1px solid #dfe7f2;
    border-radius: 12px;
    background: #f7faff;
    padding: 0 14px;
    font-size: 14px;
    color: #111827;
    outline: none;
    transition: .2s ease;
    box-shadow: inset 0 1px 2px rgba(17,24,39,0.03);
}

.find-input:focus,
.find-select:focus {
    border-color: #8ba7ff;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(67,104,245,.08);
}

.find-tel-row,
.find-email-row {
    display: grid;
    gap: 8px;
    align-items: center;
}

.find-tel-row {
    grid-template-columns: 1.45fr 1fr 1fr 1fr;
}

.find-email-row {
    grid-template-columns: 1fr 20px 1fr 1fr;
}

.find-divider-text {
    text-align: center;
    font-size: 13px;
    color: #8b95a7;
    font-weight: 600;
}

.find-verify-btn,
.find-submit-btn,
.find-secondary-btn {
    width: 100%;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.find-verify-btn {
    height: 46px;
    border: 1px solid #dfe7f2;
    background: #fff;
    color: #374151;
    font-size: 13px;
}

.find-verify-btn:hover {
    background: #f8fbff;
}

.find-submit-btn {
    height: 50px;
    border: 1px solid #1e4fff;
    background: linear-gradient(180deg, #2c63ff 0%, #1447ef 100%);
    color: #fff;
    font-size: 14px;
    box-shadow: 0 14px 22px rgba(30, 79, 255, 0.16);
}

.find-bottom-btn {
    margin-top: 18px;
}

.find-note {
    margin-top: 12px;
    text-align: center;
    font-size: 12px;
    color: #8a93a4;
}

@media screen and (max-width: 768px) {
    .find-auth-tabs button{
        flex: 0 0 auto !important;   
        width: 100%;
    }

    .find-radio{
        flex: 0 0 auto !important;   
        width: 100%;
    }

    .find-radio label{
        width: 100%;
        min-height: 46px;       
    }

    .find-auth-page {
        padding: 18px 12px 30px;
        min-height: auto;
    }

    .find-auth-card {
        padding: 22px 14px 18px;
        border-radius: 18px;
    }

    .find-auth-head h2 {
        font-size: 26px;
    }

    .find-auth-tabs,
    .find-method-switch {
        flex-direction: column;
    }

    .find-tel-row,
    .find-email-row {
        grid-template-columns: 1fr;
    }

    .find-divider-text {
        display: none;
    }
}