/* Find ID 페이지 스타일 */
.container {
    max-width: 1200px;
    width: 100%;
    padding: 40px 20px;
    margin: 0 auto;
}

.find-id-header {
    text-align: center;
    margin-bottom: 40px;
}

.find-id-header h1 {
    font-size: 28px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.find-id-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.info-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.info-box strong {
    color: #333;
}

.find-id-section {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.input-group input {
    flex: 1;
}

.btn-check {
    padding: 12px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.btn-check:hover {
    background-color: #555;
}

.btn-check:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.verification-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.verification-section.hidden {
    display: none;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn-submit:hover {
    background-color: #555;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.result-section {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
    display: none;
}

.result-section.show {
    display: block;
}

.result-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

.result-content {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.result-email {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 10px 0;
}

.result-info {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.utility-links {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
}

.utility-links a {
    color: #666;
    text-decoration: none;
}

.utility-links a:hover {
    color: #333;
    text-decoration: underline;
}

.utility-links a:not(:last-child)::after {
    content: '|';
    margin: 0 10px;
    color: #ddd;
}

.verification-timer {
    font-size: 12px;
    color: #ff4444;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .find-id-header h1 {
        font-size: 24px;
    }
    
    .find-id-section {
        padding: 30px 20px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .btn-check {
        width: 100%;
    }
    
    .result-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }
    
    .find-id-header h1 {
        font-size: 20px;
    }
    
    .find-id-section {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .result-section {
        padding: 20px 15px;
    }
    
    .result-title {
        font-size: 18px;
    }
    
    .utility-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .utility-links a:not(:last-child)::after {
        display: none;
    }
}
